fix: 修复账号类型判断逻辑,移除不必要的注释

This commit is contained in:
傅光孟 2026-03-10 19:49:03 +08:00
parent 461aa0c691
commit 9dd4c25c41
1 changed files with 2 additions and 2 deletions

View File

@ -56,10 +56,10 @@ const storeSetup = () => {
// 试用 | 正式 // 试用 | 正式
const isUserType = computed(() => { const isUserType = computed(() => {
// 0:测试 1:正式 判断账号类型 // 0:测试 1:正式 判断账号类型
// return getUserInfos()?.accountType === 1 ? true : false; return getUserInfos()?.accountType === 1 ? true : false;
// 为了兼容之前的版本,暂时不区分账号类型,先放开正式账号和测试账号的限制 // 为了兼容之前的版本,暂时不区分账号类型,先放开正式账号和测试账号的限制
return true; // return true;
}); });
// 登录 // 登录