diff --git a/src/pages/Index/Regular/Running.vue b/src/pages/Index/Regular/Running.vue
index f74c130..0339891 100644
--- a/src/pages/Index/Regular/Running.vue
+++ b/src/pages/Index/Regular/Running.vue
@@ -1195,10 +1195,13 @@ const updateStartTimes = () => {
// 计算剩余时间
const getRemainingTime = (plate: Subtank) => {
+ if(!plate.projId){
+ return;
+ }
const startTime = startTimes.value[plate.pos] || Date.now()
const elapsed = (Date.now() - startTime) / 1000 // 已经过的秒数
const remaining = Math.max(0, plate.incubatedTimeSec - elapsed) // 剩余时间,最小为0
-
+
if (remaining === 0) return '已完成'
const minutes = Math.floor(remaining / 60)
const seconds = Math.floor(remaining % 60)
diff --git a/src/pages/Index/components/Consumables/IdCardInfo.vue b/src/pages/Index/components/Consumables/IdCardInfo.vue
index 3a5c608..9074780 100644
--- a/src/pages/Index/components/Consumables/IdCardInfo.vue
+++ b/src/pages/Index/components/Consumables/IdCardInfo.vue
@@ -26,7 +26,7 @@
-
@@ -57,7 +57,7 @@
:class="{ active: page === currentPage }">
{{ page === '...' ? '...' : page }}
-