From 76aee3bfa5a1e703fde16408d92b71c4fe2cdeb8 Mon Sep 17 00:00:00 2001
From: yangys <y_ys79@sina.com>
Date: 星期一, 08 九月 2025 20:28:22 +0800
Subject: [PATCH] 增加过程卡号显示
---
src/views/flowmgr/processQuery1.vue | 23 +++++++++++++----------
1 files changed, 13 insertions(+), 10 deletions(-)
diff --git a/src/views/flowmgr/processQuery1.vue b/src/views/flowmgr/processQuery1.vue
index 6d917fb..a5b093b 100644
--- a/src/views/flowmgr/processQuery1.vue
+++ b/src/views/flowmgr/processQuery1.vue
@@ -89,7 +89,7 @@
border: true,
index: true,
selection: false,
- menuWidth: 100,
+ menuWidth: 110,
dialogClickModal: false,
column: [
{
@@ -160,7 +160,7 @@
{
label: '闆剁粍浠跺彿',
- prop: 'drawingNo',
+ prop: '',
width: 82,
render: ({ row }) => {
return h('span', {}, row?.variables?.drawingNo || '');
@@ -168,7 +168,7 @@
},
{
label: '宸ュ簭鍙�',
- prop: 'processNo',
+ prop: '',
width: 80,
render: ({ row }) => {
return h('span', {}, row?.variables?.processNo || '');
@@ -176,7 +176,7 @@
},
{
label: '宸ュ簭鍚嶇О',
- prop: 'processName',
+ prop: '',
width: 82,
render: ({ row }) => {
return h('span', {}, row?.variables?.processName || '');
@@ -184,7 +184,7 @@
},
{
label: '宸ュ簭鐗堟',
- prop: 'processEdition',
+ prop: '',
width: 82,
render: ({ row }) => {
return h('span', {}, row?.variables?.processEdition || '');
@@ -192,7 +192,7 @@
},
{
label: '鎵规鍙�',
- prop: 'variables.craftEdition',
+ prop: '',
width: 70,
render: ({ row }) => {
return h('span', {}, row?.variables?.craftEdition || '');
@@ -200,7 +200,7 @@
},
{
label: '浠诲姟杞﹂棿',
- prop: 'workshop',
+ prop: '',
width: 82,
render: ({ row }) => {
return h('p',{'class': 'margin0'}, row?.variables?.workshop || '');
@@ -208,8 +208,11 @@
},
{
label: '杩囩▼鍗″彿',
- prop: 'empty',
+ prop: '',
width: 82,
+ render: ({ row }) => {
+ return h('p',{'class': 'margin0'}, row?.variables?.processCard || '');
+ }
},
{
@@ -362,9 +365,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