You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.4 KiB
HTML
119 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<!-- import CSS -->
|
|
<link rel="stylesheet" href="https://unpkg.com/element-ui/lib/theme-chalk/index.css">
|
|
<title>我的账户</title>
|
|
</head>
|
|
<body>
|
|
<div id="app">
|
|
<el-container>
|
|
<el-main>
|
|
<el-row>
|
|
<el-col :span="24">
|
|
<el-descriptions title="用户信息">
|
|
<el-descriptions-item label="用户名">kooriookami</el-descriptions-item>
|
|
<el-descriptions-item label="手机号">18100000000</el-descriptions-item>
|
|
<el-descriptions-item label="居住地">苏州市</el-descriptions-item>
|
|
<el-descriptions-item label="备注">
|
|
<el-tag size="small">学校</el-tag>
|
|
</el-descriptions-item>
|
|
<el-descriptions-item label="联系地址">江苏省苏州市吴中区吴中大道 1188 号</el-descriptions-item>
|
|
</el-descriptions>
|
|
</el-col>
|
|
</el-row>
|
|
</el-main>
|
|
</el-container>
|
|
</div>
|
|
</body>
|
|
<!-- import Vue before Element -->
|
|
<script src="https://unpkg.com/vue@2/dist/vue.js"></script>
|
|
<!-- import JavaScript -->
|
|
<script src="https://unpkg.com/element-ui/lib/index.js"></script>
|
|
<script src="https://unpkg.com/axios@1.1.2/dist/axios.min.js"></script>
|
|
<script>
|
|
new Vue({
|
|
el: '#app',
|
|
data() {
|
|
return {
|
|
activeName: 'register',
|
|
loginForm: {
|
|
username: '',
|
|
password: ''
|
|
},
|
|
registerForm: {
|
|
username: '',
|
|
password: '',
|
|
confirm_password: ''
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
if (!window.sessionStorage.getItem('token')) {
|
|
window.location.href = '/login.html'
|
|
return;
|
|
}
|
|
},
|
|
methods: {
|
|
bindCard() {
|
|
axios.post('/account/bind-card', this.bindConfirmForm)
|
|
.then( (response) => {
|
|
console.log(response);
|
|
let result = response.data
|
|
if (result.code != 1000) {
|
|
return this.$message.error(response.data.message);
|
|
}
|
|
this.bindConfirmVisible = false;
|
|
this.$message.success('支付成功');
|
|
this.$alert('请记住您的订单号:' + result.data.bizData.outOrderNo , '支付成功', {
|
|
confirmButtonText: '确定',
|
|
callback: action => {
|
|
}
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
this.$message.error('请求错误');
|
|
console.log(error);
|
|
});
|
|
console.log('submit!');
|
|
},
|
|
transferPay() {
|
|
axios.post('/account/transfer-pay', this.payConfirmForm)
|
|
.then( (response) => {
|
|
console.log(response);
|
|
let result = response.data
|
|
if (result.code != 1000) {
|
|
return this.$message.error(response.data.message);
|
|
}
|
|
this.payConfirmVisible = false;
|
|
this.$message.success('支付成功');
|
|
this.$alert('请记住您的订单号:' + result.data.bizData.outOrderNo , '支付成功', {
|
|
confirmButtonText: '确定',
|
|
callback: action => {
|
|
}
|
|
});
|
|
})
|
|
.catch((error) => {
|
|
this.$message.error('请求错误');
|
|
console.log(error);
|
|
});
|
|
console.log('submit!');
|
|
},
|
|
getQueryParam(name) {
|
|
var query = window.location.search.substring(1);
|
|
console.log(query)
|
|
var vars = query.split("&");
|
|
for (var i = 0; i < vars.length; i++) {
|
|
var pair = vars[i].split("=");
|
|
console.log(pair[0], name)
|
|
if(pair[0] == name) {
|
|
return pair[1];
|
|
}
|
|
}
|
|
return undefined;
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
</html> |