From ce70bd97c7f2577f0978b39b9da1ccdd8d5b768f Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期五, 19 九月 2025 22:50:14 +0800
Subject: [PATCH] 机床增加设备编号

---
 src/views/flowmgr/processQuery2.vue |   23 +++++++++++++++--------
 1 files changed, 15 insertions(+), 8 deletions(-)

diff --git a/src/views/flowmgr/processQuery2.vue b/src/views/flowmgr/processQuery2.vue
index 12abaec..96977f9 100644
--- a/src/views/flowmgr/processQuery2.vue
+++ b/src/views/flowmgr/processQuery2.vue
@@ -17,15 +17,14 @@
             <template #menu="scope">
                 <el-button type="primary" text size="default" @click.stop="customView(scope.row, scope.index, 0)">鏌ョ湅
                 </el-button>
+                <!--
                <el-button type="primary" text size="default" v-if="scope.row.processDefinitionKey === 'dispatch'"
                     @click.stop="handleApproveTable(scope.row, scope.index)">瀹℃壒琛�
                 </el-button>
-                 <!--
-                  v-if="scope.row.processDefinitionKey === 'program-cure'"
-                -->
                 <el-button type="primary" text size="default" v-if="scope.row.processDefinitionKey === 'program-cure'"
                     @click.stop="handleConfirmTable(scope.row, scope.index)">纭琛�
                 </el-button>
+                -->
             </template>
         </avue-crud>
         <el-dialog title="鎸囨淳" append-to-body v-model="reassignBox" width="30%">
@@ -83,7 +82,7 @@
                 // tree: true,
                 border: true,
                 index: true,
-                selection: true,
+                selection: false,
                 menuWidth: 80,
                 // menu: false,
                 labelWidth: 90,
@@ -203,8 +202,16 @@
                     },
                     {
                         label: '杩囩▼鍗″彿',
-                        prop: 'empty',
+                        prop: '',
                         width: 80,
+						render: ({ row }) => {
+                            return h('p',
+                                {
+                                    attrs: {},
+                                    class: {},
+                                    style: {},
+                                }, row?.variables?.processCard)
+                        },
                     },
 					{
                         label: '鍥惧彿',
@@ -371,9 +378,9 @@
                     },
                     {
                         label: '杩囩▼鍗″彿',
-                        prop: 'empty',
+                        prop: '',
                         render: ({ row }) => {
-                            return h('p',{'class': 'margin0'}, row?.variables?.empty || '');
+                            return h('p',{'class': 'margin0'}, row?.variables?.processCard || '');
                         }
                     },
                     {
@@ -433,7 +440,7 @@
                         }
                     },
                     {
-                        label: '鍋忕鍗曞彿',
+                        label: '涓存椂鏇存敼鍗曞彿',
                         prop: '',
                         render: ({ row }) => {
                             return h('p',{'class': 'margin0'}, row?.variables?.deviation || '');

--
Gitblit v1.9.3