提交 9c305aec 编写于 作者: KK's avatar KK

解决提示报错

上级 32460690
...@@ -79,11 +79,11 @@ ...@@ -79,11 +79,11 @@
} }
}).catch((response: any) => { }).catch((response: any) => {
if (response && response.status) { if (response && response.status) {
this.$Notice.error({ title: '错误', desc: response.message }); this.$notice.error(response.message);
return; return;
} }
if (!response || !response.status || !response.data) { if (!response || !response.status || !response.data) {
this.$Notice.error({ title: '错误', desc: '系统异常' }); this.$notice.error('系统异常');
return; return;
} }
}); });
......
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
} }
}).catch((response: any) => { }).catch((response: any) => {
if (response && response.status) { if (response && response.status) {
this.$Notice.error({ title: '错误', desc: response.message }); this.$notice.error(response.message);
return; return;
} }
if (!response || !response.status || !response.data) { if (!response || !response.status || !response.data) {
this.$Notice.error({ title: '错误', desc: '系统异常' }); this.$notice.error('系统异常');
return; return;
} }
}); });
......
...@@ -28,11 +28,11 @@ ...@@ -28,11 +28,11 @@
} }
}).catch((response: any) => { }).catch((response: any) => {
if (response && response.status) { if (response && response.status) {
this.$Notice.error({ title: '错误', desc: response.message }); this.$notice.error(response.message);
return; return;
} }
if (!response || !response.status || !response.data) { if (!response || !response.status || !response.data) {
this.$Notice.error({ title: '错误', desc: '系统异常' }); this.$notice.error('系统异常');
return; return;
} }
}); });
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册