mirror of
https://github.com/jeecgboot/jeecg-boot.git
synced 2025-09-10 01:10:08 +00:00
issues/I4SKUS 分子字典树前端代码生成错误
This commit is contained in:
@@ -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)})
|
||||||
|
Reference in New Issue
Block a user