fix: 移除套餐徽章兜底与兼容逻辑
套餐标签仅使用后端返回的 packageName 字段,不再本地缓存、默认值回填或多字段兼容。
This commit is contained in:
@@ -108,7 +108,7 @@ const avatar = computed(() => {
|
||||
});
|
||||
|
||||
const packageTagText = computed(() => {
|
||||
return userStore.userInfo?.desc?.trim() || '标准版';
|
||||
return userStore.userInfo?.desc?.trim() ?? '';
|
||||
});
|
||||
|
||||
async function handleLogout() {
|
||||
|
||||
Reference in New Issue
Block a user