fix: point exp

This commit is contained in:
zzc
2026-02-24 23:30:36 +08:00
parent e5a8f3ca3f
commit 19c18b478f
4 changed files with 43 additions and 9 deletions

View File

@@ -27,7 +27,7 @@
</view>
<view class="points-right">
<text>当前积分</text>
<text class="score-val">{{ userScore }}</text>
<text class="score-val">{{ userPoints }}</text>
</view>
</view>
@@ -123,7 +123,7 @@ const userStore = useUserStore();
const loginPopupRef = ref(null);
const isLoggedIn = computed(() => !!userStore.userInfo.nickName);
const userScore = computed(() => userStore.userInfo.score || 0);
const userPoints = computed(() => userStore.userInfo.points || 0);
const downloadCost = ref(20);
const categories = ref([]);