e8a7d7e8 by 杨威

错误提示修改

1 parent b2d2e64b
......@@ -21,9 +21,8 @@ function errorLog() {
// this.$nextTick(() => { // 以服务的方式调用的 Loading 需要异步关闭
// loadingInstance.close();
// });
MessageBox.alert('报错了请联系管理员', '消息提示', {
confirmButtonText: '确定',
type: 'warning'
Message.error({
message: "出现错误,请稍后再试"
})
}
//定义loading
......
......@@ -625,9 +625,9 @@
} else {
Message.error("保存失败")
}
}).catch((err)=>{
vm.loadingHide()
Message.error(err)
}).catch((error)=>{
vm.loadingHide();
console.log(error);
})
}else{
Message.warning("请完善分割后的宗地项目名称后重试")
......
......@@ -788,10 +788,7 @@
})
.catch((error) => {
vm.loadingHide();
this.$message({
message: error.message+",查看日志,联系管理员",
type: "error",
});
console.log(error);
});
//保存到空间库里面
var self = this;
......