|
|
|
@ -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)})
|
|
|
|
|