提交 d64cdb52 编写于 作者: tony001's avatar tony001

补充处理快速分组模型动态数据部分

上级 e40c53d5
...@@ -207,7 +207,7 @@ if(this.formDruipart){ ...@@ -207,7 +207,7 @@ if(this.formDruipart){
if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"STATIC")){ if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"STATIC")){
const codelist = this.$store.getters.getCodeList(quickGroupCodeList.tag); const codelist = this.$store.getters.getCodeList(quickGroupCodeList.tag);
if (codelist) { if (codelist) {
this.quickGroupModel = [...JSON.parse(JSON.stringify(codelist.items))]; this.quickGroupModel = [...this.handleDynamicData(JSON.parse(JSON.stringify(codelist.items)))];
} else { } else {
<#noparse>console.log(`----${quickGroupCodeList.tag}----代码表不存在`);</#noparse> <#noparse>console.log(`----${quickGroupCodeList.tag}----代码表不存在`);</#noparse>
} }
...@@ -221,6 +221,33 @@ if(this.formDruipart){ ...@@ -221,6 +221,33 @@ if(this.formDruipart){
</#if> </#if>
} }
/**
* 处理快速分组模型动态数据部分(%xxx%)
*
* @memberof ${srfclassname('${view.name}')}Base
*/
public handleDynamicData(inputArray:Array<any>){
if(inputArray.length >0){
inputArray.forEach((item:any) =>{
if(item.data && Object.keys(item.data).length >0){
Object.keys(item.data).forEach((name:any) =>{
let value: any = item.data[name];
if (value && typeof(value)=='string' && value.startsWith('%') && value.endsWith('%')) {
const key = (value.substring(1, value.length - 1)).toLowerCase();
if (this.context[key]) {
value = this.context[key];
} else if(this.viewparams[key]){
value = this.viewparams[key];
}
}
item.data[name] = value;
})
}
})
}
return inputArray;
}
/** /**
* 快速分组值变化 * 快速分组值变化
* *
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册