From 1752dc60cced88ff7fc1b1e652769161ac54fa3c Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期四, 11 九月 2025 11:04:16 +0800
Subject: [PATCH] 修复替换流程bug

---
 src/views/flowmgr/processQuery3.vue |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/src/views/flowmgr/processQuery3.vue b/src/views/flowmgr/processQuery3.vue
index e9ce7ea..7ac53e6 100644
--- a/src/views/flowmgr/processQuery3.vue
+++ b/src/views/flowmgr/processQuery3.vue
@@ -211,8 +211,11 @@
                     },
                     {
                         label: '杩囩▼鍗″彿',
-                        prop: 'empty',
+                        prop: '',
                         width: 80,
+                        render: ({ row }) => {
+                            return h('p',{'class': 'margin0'}, row?.variables?.processCard || '');
+                        }
                     },
 					{
                         label: '鍥惧彿',
@@ -385,9 +388,9 @@
                     },
                     {
                         label: '杩囩▼鍗″彿',
-                        prop: 'empty',
+                        prop: '',
                         render: ({ row }) => {
-                            return h('p',{'class': 'margin0'}, row?.variables?.empty || '');
+                            return h('p',{'class': 'margin0'}, row?.variables?.processCard || '');
                         }
                     },
                     {

--
Gitblit v1.9.3