From 9138a30122a32c57f24acceae59fe423d9e04b57 Mon Sep 17 00:00:00 2001
From: 快乐的昕的电脑 <快乐的昕的电脑@DESKTOP-C2BQPQU>
Date: 星期三, 03 十二月 2025 15:24:13 +0800
Subject: [PATCH] 只有第一行显示 currentCjNum

---
 components/mold.vue |   12 +++++++++---
 1 files changed, 9 insertions(+), 3 deletions(-)

diff --git a/components/mold.vue b/components/mold.vue
index 669605d..356dd86 100644
--- a/components/mold.vue
+++ b/components/mold.vue
@@ -106,9 +106,15 @@
                         <td>{{ item.upTime }}</td>
                         <td class="num">{{ item.upCount != null ? item.upCount : '' }}</td>
                         <td>{{ item.downTime }}</td>
-                        <!--<td class="num">{{ item.downCount != null ? item.downCount : '' }}</td>-->
-                        <!-- 涓嬪垁璁℃暟鏀逛负瀹炴椂鏄剧ず currentCjNum -->
-                        <td class="num">{{ item.currentCjNum != null ? item.currentCjNum : '' }}</td>
+                        <!-- 鍙湁绗竴琛屾樉绀� currentCjNum锛屽叾瀹冭鏄剧ず downCount -->
+                        <td class="num">
+                            <template v-if="idx === 0">
+                                {{ item.currentCjNum != null ? item.currentCjNum : '' }}
+                            </template>
+                            <template v-else>
+                                {{ item.downCount != null ? item.downCount : '' }}
+                            </template>
+                        </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>

--
Gitblit v1.9.3