issues/I4SKUS 分子字典树前端代码生成错误

pull/3541/head
zhangdaiscott 2022-03-23 18:30:45 +08:00
parent eacaa7ed81
commit 1481b86fb3
1 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,4 @@
<#include "/common/utils.ftl">
<template> <template>
<a-card :bordered="false"> <a-card :bordered="false">
<!-- 查询区域 --> <!-- 查询区域 -->
@ -297,7 +298,7 @@
customRender: (text) => (text ? filterMultiDictText(this.dictOptions['${po.fieldName}'], text) : '') customRender: (text) => (text ? filterMultiDictText(this.dictOptions['${po.fieldName}'], text) : '')
<#else> <#else>
dataIndex: '${po.fieldName}', dataIndex: '${po.fieldName}',
customRender: (text, record) => (text ? record['${po.dictText}'] : '') customRender: (text, record) => (text ? record['${dashedToCamel(po.dictText)}'] : '')
</#if> </#if>
<#else> <#else>
dataIndex: '${po.fieldName}' dataIndex: '${po.fieldName}'
@ -411,7 +412,6 @@
</#list> </#list>
}, },
getSuperFieldList(){ getSuperFieldList(){
<#include "/common/utils.ftl">
let fieldList=[]; let fieldList=[];
<#list columns as po> <#list columns as po>
fieldList.push(${superQueryFieldList(po)}) fieldList.push(${superQueryFieldList(po)})