|
@@ -210,15 +210,20 @@
|
|
|
this.isLoading = false;
|
|
|
|
|
|
if (this.person_data) {
|
|
|
- mui.toast('提交成功,等待审核中');
|
|
|
- //跳转到项目主页上去
|
|
|
- window.location.href = '../business/#/master';
|
|
|
+ //mui.toast('提交成功,等待审核中');
|
|
|
+ mui.alert('提交成功,等待审核中', ' ', function() {
|
|
|
+ //跳转到项目主页上去
|
|
|
+ window.location.href = '../business/#/master';
|
|
|
+ });
|
|
|
} else {
|
|
|
- mui.toast('提交成功,等待审核中');
|
|
|
- this.$router.push({
|
|
|
- name: 'UserLogin',
|
|
|
- project: 'business'
|
|
|
- })
|
|
|
+ //mui.toast('提交成功,等待审核中');
|
|
|
+ var _this = this;
|
|
|
+ mui.alert('提交成功,等待审核中', ' ', function() {
|
|
|
+ _this.$router.push({
|
|
|
+ name: 'UserLogin',
|
|
|
+ project: 'business'
|
|
|
+ })
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
}).catch(error => {
|