编辑器组件,app-span在表单项值从100切换为0时,不重绘
if (this.value === undefined || this.value === null || this.tag) {
return; //代码表走codelist组件
} else if(this.editorType === "ADDRESSPICKUP"){
JSON.parse(this.value).forEach((item:any,index:number) => {
this.text += index === 0 ? item.srfmajortext : ","+item.srfmajortext;
});
} else {
this.text = this.value;
}