fix: 移除套餐徽章兜底与兼容逻辑

套餐标签仅使用后端返回的 packageName 字段,不再本地缓存、默认值回填或多字段兼容。
This commit is contained in:
2026-02-06 12:52:53 +08:00
parent 49ae730a39
commit ec6f0c527a
2 changed files with 2 additions and 17 deletions

View File

@@ -108,7 +108,7 @@ const avatar = computed(() => {
});
const packageTagText = computed(() => {
return userStore.userInfo?.desc?.trim() || '标准版';
return userStore.userInfo?.desc?.trim() ?? '';
});
async function handleLogout() {