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

值规则逻辑调整

上级 41ebda20
......@@ -212,7 +212,7 @@ import { Util } from '@/ibiz-core/utils';
* @type {any}
* @memberof ${srfclassname('${ctrl.codeName}')}
*/
public errorCache :any;
public errorCache :any = {};
/**
* 属性值规则
......@@ -477,7 +477,7 @@ import { Util } from '@/ibiz-core/utils';
this.detailsModel[property].setError("");
resolve(true);
}).catch(({ errors, fields }) => {
this.detailsModel[property].setError(this.errorCache[property]);
this.detailsModel[property].setError(this.errorCache[property]?this.errorCache[property]:errors[0].message);
resolve(false);
});
});
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册