From 280c74ead4a9f8034b5a783257a1ae514a02491c Mon Sep 17 00:00:00 2001
From: eight <641137800@qq.com>
Date: 星期三, 06 十一月 2024 16:47:49 +0800
Subject: [PATCH] 检查类型新增属性

---
 src/views/ecg/room/RoomLoginSelect.vue |   13 +++++++------
 1 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/src/views/ecg/room/RoomLoginSelect.vue b/src/views/ecg/room/RoomLoginSelect.vue
index fa8f72f..00ae7df 100644
--- a/src/views/ecg/room/RoomLoginSelect.vue
+++ b/src/views/ecg/room/RoomLoginSelect.vue
@@ -90,11 +90,11 @@
   }
 
   if (isStringEmpty(route.redirectedFrom?.fullPath))
-    push({ path: "/"})
+    push({ path: "/ecg/doctor"})
   else if(route.redirectedFrom?.fullPath === "/roomselect" )
-    push({ path: "/"})
+    push({ path: "/ecg/doctor"})
   else if(route.redirectedFrom?.fullPath === "/ecg/roomselect" )
-    push({ path: "/"})
+    push({ path: "/ecg/doctor"})
   else
     push({ path: route.redirectedFrom?.fullPath})
 }
@@ -136,14 +136,15 @@
     curSel.value = newRoomVO;
   }
 
+  // curSel.value.opType 0 1 2
   if (isStringEmpty(route.redirectedFrom?.fullPath)) {
-    push({path: "/"})
+    push({path: "/ecg/doctor"})
   }
   else if(route.redirectedFrom?.fullPath === "/roomselect" ) {
-    push({path: "/"})
+    push({path: "/ecg/doctor"})
   }
   else if(route.redirectedFrom?.fullPath === "/ecg/roomselect" ) {
-    push({path: "/"})
+    push({path: "/ecg/doctor"})
   }
   else {
     push({path: route.redirectedFrom?.fullPath})

--
Gitblit v1.9.3