提交 6c50214e 编写于 作者: Mosher's avatar Mosher

行编辑值校验错误信息提示优化

上级 d8c665ec
......@@ -1956,11 +1956,13 @@ import { Environment } from '@/environments/environment';
}
}
}
if(!await this.validateAll()){
if (!await this.validateAll()) {
if(this.errorMessages && this.errorMessages.length > 0) {
let descMessage: string = '';
this.errorMessages.forEach((message: any) => {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: message });
descMessage = descMessage + '<p>' + message + '<p>';
})
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), dangerouslyUseHTMLString: true, desc: descMessage });
} else {
this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: (this.$t('app.commonWords.rulesException') as string) });
}
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册