Commit b03abf27 b03abf271933e265dfeb30e35b1a710564b62c43 by zhanghao

commit

1 parent 8455fdac
......@@ -277,7 +277,7 @@
activity() {
const loading = this.$loading({
lock: true,
text: 'Loading',
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
......
......@@ -87,7 +87,7 @@
activity() {
const loading = this.$loading({
lock: true,
text: 'Loading',
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
......
......@@ -677,6 +677,12 @@
})
},
createUserInfoSubmit() {
const loading = this.$loading({
lock: true,
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
let config = {
headers: {
'Content-Type': 'application/x-www-form-urlencoded'
......@@ -706,8 +712,10 @@
type: 'success'
});
}
loading.close();
}).catch(error=>{
console.log(error);
loading.close();
this.$message({
showClose: true,
message: '服务器处理失败,请核对参数!',
......@@ -723,7 +731,7 @@
queryPhoneCodeSubmit() {
const loading = this.$loading({
lock: true,
text: 'Loading',
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
......
......@@ -172,7 +172,7 @@
activity() {
const loading = this.$loading({
lock: true,
text: 'Loading',
text: '加载中...',
spinner: 'el-icon-loading',
background: 'rgba(0, 0, 0, 0.7)'
});
......