From 051e18f000cc438bc7dd972d3fe3cc9ea4f91b24 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Wed, 08 Jul 2026 16:21:34 +0800
Subject: [PATCH] feat:更新处理单位

---
 applications/task-work-order/src/views/orderView/deviceInvocation/equipmentResource/index.vue |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/applications/task-work-order/src/views/orderView/deviceInvocation/equipmentResource/index.vue b/applications/task-work-order/src/views/orderView/deviceInvocation/equipmentResource/index.vue
index 9063627..e523bbc 100644
--- a/applications/task-work-order/src/views/orderView/deviceInvocation/equipmentResource/index.vue
+++ b/applications/task-work-order/src/views/orderView/deviceInvocation/equipmentResource/index.vue
@@ -75,6 +75,11 @@
 							{{ getDictLabel(row.modeCode, dictObj.modeCode) }}
 						</template>
 					</el-table-column>
+					<el-table-column prop="maintenanceState" show-overflow-tooltip label="保养状态">
+						<template v-slot="{ row }">
+							{{ row.maintenanceState === 0 ? '无需保养' : row.maintenanceState === 1 ? '待保养' : '正在保养' }}
+						</template>
+					</el-table-column>
 					<el-table-column prop="deviceSn" show-overflow-tooltip label="设备SN" />
 					<el-table-column show-overflow-tooltip label="设备位置" >
 						<template v-slot="{ row }">

--
Gitblit v1.9.3