From 6648e74a007254e167c5508de5d25402cd4bb63b Mon Sep 17 00:00:00 2001 From: zhuguifei <zhuguifei@zhuguifeideiMac.local> Date: 星期一, 10 三月 2025 16:39:50 +0800 Subject: [PATCH] 完成保养工单明细 --- eims-ui/apps/web-antd/src/views/eims/repair-req/data.tsx | 33 +++++++++++++++++---------------- 1 files changed, 17 insertions(+), 16 deletions(-) diff --git a/eims-ui/apps/web-antd/src/views/eims/repair-req/data.tsx b/eims-ui/apps/web-antd/src/views/eims/repair-req/data.tsx index f6ce668..4946d81 100644 --- a/eims-ui/apps/web-antd/src/views/eims/repair-req/data.tsx +++ b/eims-ui/apps/web-antd/src/views/eims/repair-req/data.tsx @@ -79,6 +79,23 @@ export const columns: VxeGridProps['columns'] = [ { type: 'checkbox', width: 60, fixed: 'left' }, { + title: '璁惧(宸ュ叿)鍚嶇О', + sortable: true, + minWidth: 150, + fixed: 'left', + slots: { + default: ({ row }) => { + if (row.reqType === REPAIR_REQ_TYPE.EQU) { + return row.equName; + } else if (row.reqType === REPAIR_REQ_TYPE.FIXTURE) { + return row.fixtureName; + } else { + return ''; + } + } + } + }, + { title: '鎶ヤ慨鍗曞彿', field: 'code', minWidth: 160, @@ -116,22 +133,6 @@ field: 'reqTime', sortable: true, minWidth: 200 - }, - { - title: '璁惧(宸ュ叿)鍚嶇О', - sortable: true, - minWidth: 150, - slots: { - default: ({ row }) => { - if (row.reqType === REPAIR_REQ_TYPE.EQU) { - return row.equName; - } else if (row.reqType === REPAIR_REQ_TYPE.FIXTURE) { - return row.fixtureName; - } else { - return ''; - } - } - } }, { title: '鏁呴殰绫诲埆', -- Gitblit v1.9.3