From d3570291a7b181307e5d93362219aceabf8830ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=A2=81=E7=90=A6=E6=B6=9B?= Date: Wed, 15 Mar 2023 16:31:29 +0800 Subject: [PATCH] =?UTF-8?q?=E3=80=90fix=20bug=E3=80=91=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=94=9F=E6=88=90=E5=99=A8=E6=97=B6=E9=97=B4=E8=8C=83=E5=9B=B4?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E7=9A=84=E7=BB=84=E4=BB=B6=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../${entityPackage}/vue/${entityName}List.vuei | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/jero-boot/jero-boot-module-system/src/main/resources/jero/code-template-online/default/one/java/${bussiPackage}/${entityPackage}/vue/${entityName}List.vuei b/jero-boot/jero-boot-module-system/src/main/resources/jero/code-template-online/default/one/java/${bussiPackage}/${entityPackage}/vue/${entityName}List.vuei index 025e872b..2c798e44 100644 --- a/jero-boot/jero-boot-module-system/src/main/resources/jero/code-template-online/default/one/java/${bussiPackage}/${entityPackage}/vue/${entityName}List.vuei +++ b/jero-boot/jero-boot-module-system/src/main/resources/jero/code-template-online/default/one/java/${bussiPackage}/${entityPackage}/vue/${entityName}List.vuei @@ -69,10 +69,12 @@ <#if query_field_no gt 1> <#if query_field_no gt 1> <#if po.classType=='date'> + <#assign date_flag=true> <#if query_field_no gt 1> <#if query_field_no gt 1> <#if query_field_no gt 1> <#elseif po.classType=='datetime'> + <#assign date_flag=true> <#if query_field_no gt 1> <#if query_field_no gt 1> <#if query_field_no gt 1> @@ -406,6 +408,15 @@ export default { }, + <#if date_flag> + test(){ + <#list columns as po> + <#if po.classType=='datetime' || po.classType=='date'> + console.log("111" + ${po.fieldName}) + + + }, + getSuperFieldList () { <#include "/common/utils.ftl"> const fieldList = [] @@ -414,6 +425,7 @@ export default { this.superFieldList = fieldList } + } }