From af0a5198b6af043f38eed9e98a2124c9ab659ad7 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Wed, 12 Apr 2023 16:36:52 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=8C=20fix(store):=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=E9=BB=98=E8=AE=A4=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/store/modules/achievements.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/store/modules/achievements.ts b/src/store/modules/achievements.ts index 586b9176..14c674b7 100644 --- a/src/store/modules/achievements.ts +++ b/src/store/modules/achievements.ts @@ -13,14 +13,14 @@ import { defineStore } from "pinia"; export const useAchievementsStore = defineStore( "achievements", () => { // 成就数据 - const totalAchievements = ref(899); + const totalAchievements = ref(950); const finAchievements = ref(0); - const lastVersion = ref("v3.5"); + const lastVersion = ref("v3.6"); const UIAFVersion = ref("v1.1"); - const title = ref("成就完成数:0/899 完成率:0%"); + const title = ref("成就完成数:0/950 完成率:0%"); function init (): void { - totalAchievements.value = 899; + totalAchievements.value = 950; finAchievements.value = 0; title.value = getTitle(); }