1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
| <#assign sourceFields = po.dictField?default("")?trim?split(",")/>
| <#assign targetFields = po.dictText?default("")?trim?split(",")/>
| component: 'JPopup',
| componentProps: ({ formActionType }) => {
| const {setFieldsValue} = formActionType;
| return{
| setFieldsValue:setFieldsValue,
| code:"${po.dictTable}",
| fieldConfig: [
| <#list sourceFields as fieldName>
| { source: '${fieldName}', target: '${dashedToCamel(targetFields[fieldName_index])}' },
| </#list>
| ],
| multi:${po.extendParams.popupMulti?c}
| }
| },
|
|