|
@@ -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>
|