From 14746caa15056706b60367c55ed77391ae7102be Mon Sep 17 00:00:00 2001 From: wangfukang <15630117759@163.com> Date: Wed, 3 Jun 2026 12:15:00 +0800 Subject: [PATCH] 1 --- package1/planet/adventure.vue | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package1/planet/adventure.vue b/package1/planet/adventure.vue index 36addc5..ebff562 100644 --- a/package1/planet/adventure.vue +++ b/package1/planet/adventure.vue @@ -163,8 +163,8 @@ cards: [], slots: [], slotLimit: 7, - timeLimit: 180, - timeLeft: 180, + timeLimit: 300, + timeLeft: 300, timer: null, roundSeed: '', moveCount: 0, @@ -228,7 +228,7 @@ return cells }, timerText() { - return this.playing ? `${this.timeLeft}s` : '180s限时' + return this.playing ? `${this.timeLeft}s` : '300s限时' }, timerPercent() { return Math.max(0, Math.min(100, Math.round(this.timeLeft * 100 / this.timeLimit))) @@ -243,7 +243,7 @@ if (!this.playing) return '开始后进入倒计时' if (this.timeLeft <= 30) return '最后冲刺,槽位别满' if (this.timeLeft <= 60) return '时间紧张,加快决策' - return '180秒内完成助推' + return '300秒内完成助推' }, riskText() { if (this.slots.length >= this.slotLimit - 1) return '危险:差1格就满' @@ -277,7 +277,7 @@ const elapsed = Math.floor((Date.now() - this.startTs) / 1000) this.timeLeft = Math.max(0, this.timeLimit - elapsed) if (this.timeLeft <= 0) { - this.failLevel('时间到了', '超过180秒,本关失败。不消耗次数,调整顺序再来一次。') + this.failLevel('时间到了', '超过300秒,本关失败。不消耗次数,调整顺序再来一次。') } else { this.startTimer(false) } @@ -905,7 +905,7 @@ const elapsed = Math.floor((Date.now() - this.startTs) / 1000) this.timeLeft = Math.max(0, this.timeLimit - elapsed) if (this.timeLeft <= 0) { - this.failLevel('时间到了', '超过180秒,本关失败。不消耗次数,调整顺序再来一次。') + this.failLevel('时间到了', '超过300秒,本关失败。不消耗次数,调整顺序再来一次。') } }, 1000) },