mirror of https://github.com/jeecgboot/jeecg-boot
issues/I4SKUS 分子字典树前端代码生成错误
parent
eacaa7ed81
commit
1481b86fb3
|
@ -1,3 +1,4 @@
|
|||
<#include "/common/utils.ftl">
|
||||
<template>
|
||||
<a-card :bordered="false">
|
||||
<!-- 查询区域 -->
|
||||
|
@ -297,7 +298,7 @@
|
|||
customRender: (text) => (text ? filterMultiDictText(this.dictOptions['${po.fieldName}'], text) : '')
|
||||
<#else>
|
||||
dataIndex: '${po.fieldName}',
|
||||
customRender: (text, record) => (text ? record['${po.dictText}'] : '')
|
||||
customRender: (text, record) => (text ? record['${dashedToCamel(po.dictText)}'] : '')
|
||||
</#if>
|
||||
<#else>
|
||||
dataIndex: '${po.fieldName}'
|
||||
|
@ -411,7 +412,6 @@
|
|||
</#list>
|
||||
},
|
||||
getSuperFieldList(){
|
||||
<#include "/common/utils.ftl">
|
||||
let fieldList=[];
|
||||
<#list columns as po>
|
||||
fieldList.push(${superQueryFieldList(po)})
|
||||
|
|
Loading…
Reference in New Issue