Kaynağa Gözat

刷新获取用户信息

pull/108/head
余菲 1 yıl önce
ebeveyn
işleme
c86bc2fdec
4 değiştirilmiş dosya ile 5 ekleme ve 6 silme
  1. +2
    -2
      .env.localhost
  2. +0
    -1
      src/layout/components/Header/index.vue
  3. +1
    -1
      src/router/guard/permission-guard.js
  4. +2
    -2
      src/views/system-manage/role-manage/components/AuthModal.vue

+ 2
- 2
.env.localhost Dosyayı Görüntüle

@@ -13,7 +13,7 @@ VITE_APP_GLOB_BASE_API = '/api-local'
# mock base api
VITE_APP_GLOB_BASE_API_MOCK = '/api-mock'

#VITE_AUTHORITY = 'http://192.168.11.11:8090'
VITE_AUTHORITY = 'https://login-test.t-aaron.com'
VITE_AUTHORITY = 'http://192.168.11.11:8090'
#VITE_AUTHORITY = 'https://login-test.t-aaron.com'
VITE_CLIENT_ID = 'tuoheng-pilot-admin'
VITE_CLIENT_SECRET = 'WB0CZ1c6bZLiYP6jLtDFsA=='

+ 0
- 1
src/layout/components/Header/index.vue Dosyayı Görüntüle

@@ -66,7 +66,6 @@ export default defineComponent({
}

const getUserInfo = computed(() => {
console.log(userStore, '==============')
return {
hasLogin: userStore.hasLogin,
// avatar: userStore.avatar,

+ 1
- 1
src/router/guard/permission-guard.js Dosyayı Görüntüle

@@ -5,11 +5,11 @@ import { getUserInfo, signinRedirect, signoutRedirect } from '@/utils/oidc/index

export function createPermissionGuard(router) {
const userStore = useUserStore()
// userStore.getUserInfos()
const permissionStore = usePermissionStore()
router.beforeEach(async(to, from, next) => {
const oidcUser = await getUserInfo()
if (oidcUser) {
userStore.getUserInfos()
const hasRoutes = !!permissionStore.permissionRoutes.length
if (hasRoutes) {
next()

+ 2
- 2
src/views/system-manage/role-manage/components/AuthModal.vue Dosyayı Görüntüle

@@ -9,7 +9,7 @@
<n-tabs type="line" animated>
<n-tab-pane display-directive="show" name="pc" tab="管理端菜单">
<n-tree
v-show="tabsTreeVisible"
v-if="tabsTreeVisible"
ref="adminTreeRef"
block-line
cascade
@@ -24,7 +24,7 @@
</n-tab-pane>
<n-tab-pane display-directive="show" name="mp" tab="小程序菜单">
<n-tree
v-show="tabsTreeVisible"
v-if="tabsTreeVisible"
ref="miniTreeRef"
block-line
cascade

Yükleniyor…
İptal
Kaydet