Kaynağa Gözat

登录判断

CzRger 1 yıl önce
ebeveyn
işleme
e3f9569a0d
3 değiştirilmiş dosya ile 14 ekleme ve 7 silme
  1. 9 2
      src/App.vue
  2. 1 1
      src/router/index.ts
  3. 4 4
      vite.config.ts

+ 9 - 2
src/App.vue

@@ -18,6 +18,7 @@ import {
   getCurrentInstance
 } from 'vue'
 import {useStore} from 'vuex'
+import {useRoute} from 'vue-router'
 import {ElConfigProvider} from 'element-plus'
 import zhLocale from 'element-plus/lib/locale/lang/zh-cn'
 import LoginCom from '@/views/login/index.vue'
@@ -29,10 +30,16 @@ export default defineComponent({
   },
   setup() {
     const store = useStore()
+    const route = useRoute()
     const locale = ref(zhLocale)
     const that = (getCurrentInstance() as ComponentInternalInstance).appContext.config.globalProperties
-    const isLogin = computed(() => {
-      return store.getters['app/isLogin']
+    let isLogin = ref(true)
+    onMounted(() => {
+      setTimeout(() => {
+        if (!store.getters['app/isLogin'] && !route.meta.noLogin) {
+          isLogin.value = false
+        }
+      }, 500)
     })
 
     return {

+ 1 - 1
src/router/index.ts

@@ -33,8 +33,8 @@ router.beforeEach((to, from, next) => {
     } else {
         if (localStorage.getItem('sc_token')) {
             store.dispatch('app/LOAD_USER_INFO').then(() => {
-                next()
             })
+            next()
         } else {
             next()
         }

+ 4 - 4
vite.config.ts

@@ -21,8 +21,8 @@ export default defineConfig({
     proxy: {
       '/api/': {
         // target: 'http://localhost:8080/',
-        // target: 'http://127.0.0.1:3333/',
-        target: 'http://10.110.35.47/',
+        target: 'http://127.0.0.1:3333/',
+        // target: 'http://10.110.35.47/',
         changeOrigin: true,
         rewrite: path => {
           return path.replace(/^\/api/, '')
@@ -30,8 +30,8 @@ export default defineConfig({
       },
       '/api-gateway/': {
         // target: 'http://localhost:8080/',
-        // target: 'http://127.0.0.1:4444/',
-        target: 'http://10.110.32.62/',
+        target: 'http://127.0.0.1:4444/',
+        // target: 'http://10.110.32.62/',
         changeOrigin: true,
         rewrite: path => {
           return path.replace(/^\/api-gateway/, '')