From 9859b81f5a8942f81cfa50c47c72508e46b60cb3 Mon Sep 17 00:00:00 2001 From: king <18310653075@163.com> Date: 星期四, 16 一月 2025 15:09:46 +0800 Subject: [PATCH] 2025-01-16 --- 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