错误提示修改
Showing
3 changed files
with
6 additions
and
10 deletions
... | @@ -21,9 +21,8 @@ function errorLog() { | ... | @@ -21,9 +21,8 @@ function errorLog() { |
21 | // this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭 | 21 | // this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭 |
22 | // loadingInstance.close(); | 22 | // loadingInstance.close(); |
23 | // }); | 23 | // }); |
24 | MessageBox.alert('报错了请联系管理员', '消息提示', { | 24 | Message.error({ |
25 | confirmButtonText: '确定', | 25 | message: "出现错误,请稍后再试" |
26 | type: 'warning' | ||
27 | }) | 26 | }) |
28 | } | 27 | } |
29 | //定义loading | 28 | //定义loading | ... | ... |
... | @@ -625,9 +625,9 @@ | ... | @@ -625,9 +625,9 @@ |
625 | } else { | 625 | } else { |
626 | Message.error("保存失败") | 626 | Message.error("保存失败") |
627 | } | 627 | } |
628 | }).catch((err)=>{ | 628 | }).catch((error)=>{ |
629 | vm.loadingHide() | 629 | vm.loadingHide(); |
630 | Message.error(err) | 630 | console.log(error); |
631 | }) | 631 | }) |
632 | }else{ | 632 | }else{ |
633 | Message.warning("请完善分割后的宗地项目名称后重试") | 633 | Message.warning("请完善分割后的宗地项目名称后重试") | ... | ... |
... | @@ -788,10 +788,7 @@ | ... | @@ -788,10 +788,7 @@ |
788 | }) | 788 | }) |
789 | .catch((error) => { | 789 | .catch((error) => { |
790 | vm.loadingHide(); | 790 | vm.loadingHide(); |
791 | this.$message({ | 791 | console.log(error); |
792 | message: error.message+",查看日志,联系管理员", | ||
793 | type: "error", | ||
794 | }); | ||
795 | }); | 792 | }); |
796 | //保存到空间库里面 | 793 | //保存到空间库里面 |
797 | var self = this; | 794 | var self = this; | ... | ... |
-
Please register or sign in to post a comment