@@ -66,6 +66,7 @@ export default defineComponent({ | |||
} | |||
const getUserInfo = computed(() => { | |||
console.log(userStore, '==============') | |||
return { | |||
hasLogin: userStore.hasLogin, | |||
// avatar: userStore.avatar, |
@@ -8,7 +8,9 @@ export const useUserStore = defineStore('user', { | |||
state() { | |||
return { | |||
userInfo: { | |||
hasLogin: false | |||
hasLogin: false, | |||
realname: '', | |||
avatar: '' | |||
} | |||
} | |||
}, |
@@ -25,7 +25,7 @@ export default { | |||
updateLoginTime().then(res => {}) | |||
// router.push({ path: getPath() }) | |||
// removePath() | |||
// userStore.getUserInfos() | |||
userStore.getUserInfos() | |||
const authority = res.profile.authority | |||
const { VITE_PLATFORM } = import.meta.env | |||
if (authority && (authority.includes(VITE_PLATFORM) || authority.includes('admin'))) { |