From db97f5ccd24153a30f34eda55679673113408db0 Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期二, 14 十月 2025 15:24:35 +0800
Subject: [PATCH] 工单选择逻辑修改

---
 components/mold.vue |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/components/mold.vue b/components/mold.vue
index d32fd6e..8d1b315 100644
--- a/components/mold.vue
+++ b/components/mold.vue
@@ -79,11 +79,11 @@
 						<td>{{ item.no }}</td>
 						<td class="left">{{ item.name }}</td>
 						<td>{{ item.upTime }}</td>
-						<td class="num">{{ item.upCount ?? '' }}</td>
+						<td class="num">{{ item.upCount != null ? item.upCount : '' }}</td>
 						<td>{{ item.downTime }}</td>
-						<td class="num">{{ item.downCount ?? '' }}</td>
-						<td class="num">{{ item.useCount ?? '' }}</td>
-						<td class="num">{{ item.useLimit ?? '' }}</td>
+						<td class="num">{{ item.downCount != null ? item.downCount : '' }}</td>
+						<td class="num">{{ item.useCount != null ? item.useCount : '' }}</td>
+						<td class="num">{{ item.useLimit != null ? item.useLimit : '' }}</td>
 						<td class="num">{{ item.lifePercent }}</td>
 						<td class="num">{{ item.lifeWarn }}</td>
 						<td :class="item.warnStatus === '棰勮' ? 'warn-cell' : (item.warnStatus === '姝e父' ? 'ok-cell' : '')">

--
Gitblit v1.9.3