hyingbo
2025-07-10 7feb2d0ebb7c6899cc654ca4ca88416b7d5ffdd0
1
2
3
4
5
6
7
8
9
10
11
12
<#assign sourceFields = col.dictField?default("")?trim?split(",")/>
<#assign targetFields = col.dictText?default("")?trim?split(",")/>
      type: JVxeTypes.popup,
      popupCode:"${col.dictTable}",
      fieldConfig: [
    <#list sourceFields as fieldName>
        { source: '${fieldName}', target: '${dashedToCamel(targetFields[fieldName_index])}' },
    </#list>
      ],
    <#if col.readonly=='Y'>
        disabled:true,
    </#if>