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