From d1cd5af5adb53e91efdd278328e1b6f8ad834fb5 Mon Sep 17 00:00:00 2001
From: king <18310653075@163.com>
Date: 星期四, 06 二月 2025 21:11:56 +0800
Subject: [PATCH] Merge branch 'positec' into dms
---
src/templates/comtableconfig/updatetable/index.jsx | 10 ++++++++++
1 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/src/templates/comtableconfig/updatetable/index.jsx b/src/templates/comtableconfig/updatetable/index.jsx
index f61593a..5f45777 100644
--- a/src/templates/comtableconfig/updatetable/index.jsx
+++ b/src/templates/comtableconfig/updatetable/index.jsx
@@ -635,16 +635,26 @@
if (item.type === 'tabs') {
item.subtabs.forEach(tab => {
tab.components[0].action.forEach(btn => {
+ btn.uuid = Utils.getuuid()
if (btn.OpenType === 'popview' && btn.config) {
btn.config.$tables = getTables(btn.config.components[0])
+
+ btn.config.components[0].action && btn.config.components[0].action.forEach(cell => {
+ cell.uuid = Utils.getuuid()
+ })
}
})
tab.components[0].cols.forEach(col => {
if (col.type !== 'custom') return
col.elements.forEach(btn => {
if (btn.eleType !== 'button') return
+ btn.uuid = Utils.getuuid()
if (btn.OpenType === 'popview' && btn.config) {
btn.config.$tables = getTables(btn.config.components[0])
+
+ btn.config.components[0].action && btn.config.components[0].action.forEach(cell => {
+ cell.uuid = Utils.getuuid()
+ })
}
})
})
--
Gitblit v1.8.0