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/processQuery1.vue | 25 ++++++++++++++-----------
1 files changed, 14 insertions(+), 11 deletions(-)
diff --git a/src/views/flowmgr/processQuery1.vue b/src/views/flowmgr/processQuery1.vue
index 6d917fb..15ed4d5 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 || '');
}
},
{
@@ -424,7 +427,7 @@
}
},
{
- label: '鍋忕鍗曞彿',
+ label: '涓存椂鏇存敼鍗曞彿',
prop: '',
render: ({ row }) => {
return h('p',{'class': 'margin0'}, row?.variables?.deviation || '');
--
Gitblit v1.9.3