mirror of https://github.com/jeecgboot/jeecg-boot
issues/I4SKUS 分子字典树前端代码生成错误
parent
eacaa7ed81
commit
1481b86fb3
|
@ -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)})
|
||||||
|
|
Loading…
Reference in New Issue