四零语境后端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
439 B

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