diff --git a/src/components/DailyTaskStatus.vue b/src/components/DailyTaskStatus.vue index 4f521a7..dd23c6a 100644 --- a/src/components/DailyTaskStatus.vue +++ b/src/components/DailyTaskStatus.vue @@ -2,7 +2,11 @@
- 每日任务 + 每日任务

每日任务

当前进度

@@ -12,14 +16,20 @@
-
+
任务详情
-
@@ -29,7 +39,7 @@
@@ -176,7 +186,7 @@
@@ -214,21 +224,24 @@
-
+
- {{ formatTime(log.time) }} + {{ logItem.time }} - {{ log.message }} + {{ logItem.message }}
@@ -237,7 +250,7 @@ @@ -589,8 +778,8 @@ onMounted(() => { } &:disabled { - background: var(--bg-tertiary); - color: var(--text-tertiary); + background: #e5e7eb; + color: #9ca3af; cursor: not-allowed; } } diff --git a/src/components/GameStatus.vue b/src/components/GameStatus.vue index 0d50a25..6d9ee65 100644 --- a/src/components/GameStatus.vue +++ b/src/components/GameStatus.vue @@ -13,13 +13,20 @@
- 盐罐图标 + 盐罐图标

盐罐机器人

剩余时间

-
-
+
+
{{ bottleHelper.isRunning ? '运行中' : '已停止' }}
@@ -40,13 +47,20 @@
- 挂机图标 + 挂机图标

挂机时间

已挂机:{{ formatTime(hangUp.elapsedTime) }}

-
-
+
+
{{ hangUp.isActive ? '挂机中' : '已完成' }}
@@ -55,11 +69,49 @@ {{ formatTime(hangUp.remainingTime) }}
- -
@@ -68,13 +120,20 @@
- 俱乐部图标 + 俱乐部图标

俱乐部排位

赛事状态

-
-
+
+
{{ legionMatch.isRegistered ? '已报名' : '未报名' }}
@@ -96,22 +155,35 @@