Parcourir la source

change: indent模块已登录状态 重定向url避免展示用户信息.

peter il y a 3 mois
Parent
commit
97b6db5a42
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4 2
      src/pages/indent-manage/index.vue

+ 4 - 2
src/pages/indent-manage/index.vue

@@ -22,10 +22,9 @@ if (originQuery.full_name) {
   Cookie.set('indent-crm-fullname', originQuery.full_name || '')
 }
 
+const $router = useRouter()
 // 访问非登录页, 未登录状态调整登录页
 if (!token && $route.path !== '/indent-manage/login') {
-  const $router = useRouter()
-
   const params: any = {
     origin: encodeURIComponent($route.path),
   }
@@ -40,6 +39,9 @@ if (!token && $route.path !== '/indent-manage/login') {
     path: '/indent-manage/login',
     query: params,
   })
+} else if (originQuery.u) {
+  console.log('已登录')
+  $router.replace({ path: $route.path })
 }
 </script>
 <style>