From 9dd4c25c41a10f80830d7c0aafde176293bd68be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=82=85=E5=85=89=E5=AD=9F?= Date: Tue, 10 Mar 2026 19:49:03 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E8=B4=A6=E5=8F=B7?= =?UTF-8?q?=E7=B1=BB=E5=9E=8B=E5=88=A4=E6=96=AD=E9=80=BB=E8=BE=91=EF=BC=8C?= =?UTF-8?q?=E7=A7=BB=E9=99=A4=E4=B8=8D=E5=BF=85=E8=A6=81=E7=9A=84=E6=B3=A8?= =?UTF-8?q?=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/stores/user/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }); // 登录