注释搜索:主播发送消息

观看列表只能主播跟管理员查看
This commit is contained in:
cbb
2026-02-10 17:49:33 +08:00
parent 2cc252dce0
commit 20ccbf1f14
19 changed files with 190 additions and 67 deletions

View File

@@ -126,8 +126,8 @@ export const useUserStore = defineStore('user', () => {
}
/** 获取用户积分 */
const getIntegral = async () => {
const res = await getUserIntegral()
const getIntegral = async (loading = true) => {
const res = await getUserIntegral(loading)
integralData.value = res.data.availablePoints
}