From 27cddefb0cb28da699954ba1a1756d6bcabafbbe Mon Sep 17 00:00:00 2001
From: ludc <ludc@vci-tech.com>
Date: 星期三, 05 三月 2025 17:41:29 +0800
Subject: [PATCH] 集成申码接口调整:当码值按照约定传表名为空的业务场景下传null校验问题和码值组装问题。
---
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