From f6b61a485501f326debe52d77ea65d87fb34b37f Mon Sep 17 00:00:00 2001
From: 田源 <tianyuan@vci-tech.com>
Date: 星期三, 05 三月 2025 17:57:09 +0800
Subject: [PATCH] 完善集成日志查询
---
Source/BladeX-Tool/blade-starter-develop/src/main/resources/templates/element/sub/const.js.btl | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/Source/BladeX-Tool/blade-starter-develop/src/main/resources/templates/element/sub/const.js.btl b/Source/BladeX-Tool/blade-starter-develop/src/main/resources/templates/element/sub/const.js.btl
new file mode 100644
index 0000000..c1afc96
--- /dev/null
+++ b/Source/BladeX-Tool/blade-starter-develop/src/main/resources/templates/element/sub/const.js.btl
@@ -0,0 +1,31 @@
+export default {
+ size: 'small',
+ expand: false,
+ index: true,
+ border: true,
+ selection: true,
+ column: [
+#for(x in prototypes) {
+ {
+ label: "${x.comment!}",
+ prop: "${x.propertyName!}",
+#if(strutil.contain(x.componentType,"date")||strutil.contain(x.componentType,"time")){
+ format: "yyyy-MM-dd hh:mm:ss",
+ valueFormat: "yyyy-MM-dd hh:mm:ss",
+#}
+#if(x.isForm==0){
+ display: false,
+#}
+#if(x.isRow==1){
+ span: 24,
+#}
+#if(x.isList==0){
+ hide: true,
+#}
+#if(x.isQuery==1){
+ search: true,
+#}
+ },
+#}
+ ]
+}
--
Gitblit v1.9.3