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

解决报错

上级 923951b1
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
if (response && response.status === 401) { if (response && response.status === 401) {
return; return;
} }
this.$Notice.error({ title: '错误', desc: response.info }); this.$notice.warning( response.info );
}); });
</#if> </#if>
} }
...@@ -265,7 +265,7 @@ ...@@ -265,7 +265,7 @@
if (response && response.status === 401) { if (response && response.status === 401) {
return; return;
} }
this.$Notice.error({ title: '错误', desc: response.info }); this.$notice.warning( response.info );
}); });
</#if> </#if>
} }
...@@ -353,7 +353,7 @@ ...@@ -353,7 +353,7 @@
this.curState = 'NEXT'; this.curState = 'NEXT';
this.wizardState.next({ tag: this.activeForm, action: 'save', data: this.formParam }); this.wizardState.next({ tag: this.activeForm, action: 'save', data: this.formParam });
} else { } else {
this.$Notice.error({ title: '错误', desc: '值规则校验异常' }); this.$notice.warning( '值规则校验异常' );
} }
} }
} }
...@@ -372,7 +372,7 @@ ...@@ -372,7 +372,7 @@
this.curState = 'FINISH'; this.curState = 'FINISH';
this.wizardState.next({ tag: this.activeForm, action: 'save', data: this.formParam }); this.wizardState.next({ tag: this.activeForm, action: 'save', data: this.formParam });
} else { } else {
this.$Notice.error({ title: '错误', desc: '值规则校验异常' }); this.$notice.warning( '值规则校验异常' );
} }
} }
} }
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册