From adecd142412454acbd8f729c7230e9a90b3dcddc Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期一, 18 十一月 2024 14:39:20 +0800
Subject: [PATCH] room store 改为 sessionStorage

---
 src/permission.ts |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/permission.ts b/src/permission.ts
index b0f6231..d0bfdfd 100644
--- a/src/permission.ts
+++ b/src/permission.ts
@@ -9,6 +9,7 @@
 import { useCheckTypeStoreWithOut } from '@/store/modules/checkType'
 import { useUserStoreWithOut } from '@/store/modules/user'
 import { usePermissionStoreWithOut } from '@/store/modules/permission'
+import { useRoomStoreWithOut } from "@/store/modules/room";
 
 const { start, done } = useNProgress()
 
@@ -83,6 +84,7 @@
   // 鑾峰彇鎵�鏈夊瓧鍏�
   const dictStore = useDictStoreWithOut()
   const userStore = useUserStoreWithOut()
+  const roomStore = useRoomStoreWithOut()
   const checkTypeStore = useCheckTypeStoreWithOut()
   const permissionStore = usePermissionStoreWithOut()
   if (!dictStore.getIsSetDict) {
@@ -97,7 +99,7 @@
       // <<<銆愯瘖瀹ら�夋嫨銆�<<<
       if ( to.path !== '/roomselect' &&
           userStore.getRoles.includes("doctor") && !userStore.getRoles.includes("super_admin")
-          && !userStore.getIsSetRoom ) {
+          && !roomStore.getIsSetRoom ) {
           next({path: `/roomselect?redirect=${to.fullPath}`})
           return
       }
@@ -119,7 +121,7 @@
   // <<<銆愯瘖瀹ら�夋嫨銆�<<<
   if ( to.path !== '/roomselect' &&
       userStore.getRoles.includes("doctor") && !userStore.getRoles.includes("super_admin")
-      && !userStore.getIsSetRoom ) {
+      && !roomStore.getIsSetRoom ) {
     next({path: `/roomselect?redirect=${to.fullPath}`})
     return
   }

--
Gitblit v1.9.3