From c81a4b97b0813a7894014f74a88ac86bc72e0cb1 Mon Sep 17 00:00:00 2001
From: chenyao <1219716595@qq.com>
Date: Tue, 07 Jul 2026 17:52:14 +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