mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: optimize routing logic
This commit is contained in:
parent
891158a6ea
commit
a607b63950
@ -51,7 +51,7 @@ function handleSelect(key: string | number) {
|
|||||||
size="large"
|
size="large"
|
||||||
:src="userInfo?.avatar"
|
:src="userInfo?.avatar"
|
||||||
/>
|
/>
|
||||||
{{ userInfo?.nickName }}
|
{{ userInfo?.nickname }}
|
||||||
</HeaderButton>
|
</HeaderButton>
|
||||||
</n-dropdown>
|
</n-dropdown>
|
||||||
</template>
|
</template>
|
||||||
|
@ -13,15 +13,13 @@ export function fetchLogin(params: Ilogin) {
|
|||||||
return methodInstance
|
return methodInstance
|
||||||
}
|
}
|
||||||
export function fetchUpdateToken(params: any) {
|
export function fetchUpdateToken(params: any) {
|
||||||
const method = alovaInstance.Post<ApiAuth.loginToken>('/updateToken', params)
|
const method = alovaInstance.Post<ApiAuth.loginInfo>('/updateToken', params)
|
||||||
method.meta = {
|
method.meta = {
|
||||||
authRole: 'refreshToken',
|
authRole: 'refreshToken',
|
||||||
}
|
}
|
||||||
return method
|
return method
|
||||||
}
|
}
|
||||||
export function fetchUserInfo(params: any) {
|
|
||||||
return alovaInstance.Get<Auth.UserInfo>('/getUserInfo', { params })
|
|
||||||
}
|
|
||||||
export function fetchUserRoutes(params: { id: number }) {
|
export function fetchUserRoutes(params: { id: number }) {
|
||||||
return alovaInstance.Get<AppRoute.RowRoute[]>('/getUserRoutes', { params })
|
return alovaInstance.Get<AppRoute.RowRoute[]>('/getUserRoutes', { params })
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
import { useRouteStore } from './route'
|
import { useRouteStore } from './route'
|
||||||
import { useTabStore } from './tab'
|
import { useTabStore } from './tab'
|
||||||
import { fetchLogin, fetchUserInfo } from '@/service'
|
import { fetchLogin } from '@/service'
|
||||||
import { router } from '@/router'
|
import { router } from '@/router'
|
||||||
import { local } from '@/utils'
|
import { local } from '@/utils'
|
||||||
|
|
||||||
interface AuthStatus {
|
interface AuthStatus {
|
||||||
userInfo: Auth.UserInfo | null
|
userInfo: ApiAuth.loginInfo | null
|
||||||
token: string
|
token: string
|
||||||
}
|
}
|
||||||
export const useAuthStore = defineStore('auth-store', {
|
export const useAuthStore = defineStore('auth-store', {
|
||||||
@ -62,52 +62,31 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
},
|
},
|
||||||
|
|
||||||
/* 登录后的处理函数 */
|
/* 登录后的处理函数 */
|
||||||
async handleAfterLogin(data: ApiAuth.loginToken) {
|
async handleAfterLogin(data: ApiAuth.loginInfo) {
|
||||||
// 将token和userInfo保存下来
|
// 将token和userInfo保存下来
|
||||||
const catchSuccess = await this.catchUserInfo(data)
|
local.set('userInfo', data)
|
||||||
|
local.set('token', data.accessToken)
|
||||||
|
local.set('refreshToken', data.refreshToken)
|
||||||
|
this.token = data.accessToken
|
||||||
|
this.userInfo = data
|
||||||
|
|
||||||
// 添加路由和菜单
|
// 添加路由和菜单
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
await routeStore.initAuthRoute()
|
await routeStore.initAuthRoute()
|
||||||
|
|
||||||
// 登录写入信息成功
|
// 进行重定向跳转
|
||||||
if (catchSuccess) {
|
const route = unref(router.currentRoute)
|
||||||
// 进行重定向跳转
|
const query = route.query as { redirect: string }
|
||||||
const route = unref(router.currentRoute)
|
router.push({
|
||||||
const query = route.query as { redirect: string }
|
path: query.redirect || '/',
|
||||||
router.push({
|
})
|
||||||
path: query.redirect || '/',
|
|
||||||
})
|
|
||||||
|
|
||||||
// 触发用户提示
|
// 触发用户提示
|
||||||
window.$notification?.success({
|
window.$notification?.success({
|
||||||
title: '登录成功!',
|
title: '登录成功!',
|
||||||
content: `欢迎回来😊,${this.userInfo?.nickName}!`,
|
content: `欢迎回来😊,${this.userInfo?.nickname}!`,
|
||||||
duration: 3000,
|
duration: 3000,
|
||||||
})
|
})
|
||||||
return
|
|
||||||
}
|
|
||||||
// 如果不成功则重置存储
|
|
||||||
await this.resetAuthStore()
|
|
||||||
},
|
|
||||||
|
|
||||||
/* 缓存用户信息 */
|
|
||||||
async catchUserInfo(userInfo: ApiAuth.loginToken) {
|
|
||||||
let catchSuccess = false
|
|
||||||
const { accessToken, refreshToken, id } = userInfo
|
|
||||||
// 先存储token
|
|
||||||
local.set('token', accessToken)
|
|
||||||
local.set('refreshToken', refreshToken)
|
|
||||||
this.token = accessToken
|
|
||||||
const { error, data } = await fetchUserInfo({ id })
|
|
||||||
if (error)
|
|
||||||
return catchSuccess
|
|
||||||
// 请求/存储用户信息
|
|
||||||
local.set('userInfo', data)
|
|
||||||
this.userInfo = data
|
|
||||||
catchSuccess = true
|
|
||||||
|
|
||||||
return catchSuccess
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -9,6 +9,7 @@ import { fetchUserRoutes } from '@/service'
|
|||||||
import { staticRoutes } from '@/router/routes.static'
|
import { staticRoutes } from '@/router/routes.static'
|
||||||
import { usePermission } from '@/hooks'
|
import { usePermission } from '@/hooks'
|
||||||
import { BasicLayout } from '@/layouts/index'
|
import { BasicLayout } from '@/layouts/index'
|
||||||
|
import { useAuthStore } from '@/store/auth'
|
||||||
|
|
||||||
interface RoutesStatus {
|
interface RoutesStatus {
|
||||||
isInitAuthRoute: boolean
|
isInitAuthRoute: boolean
|
||||||
@ -163,8 +164,11 @@ export const useRouteStore = defineStore('route-store', {
|
|||||||
// 根据用户id来获取用户的路由
|
// 根据用户id来获取用户的路由
|
||||||
const userInfo = local.get('userInfo')
|
const userInfo = local.get('userInfo')
|
||||||
|
|
||||||
if (!userInfo || !userInfo.id)
|
if (!userInfo || !userInfo.id) {
|
||||||
|
const authStore = useAuthStore()
|
||||||
|
authStore.resetAuthStore()
|
||||||
return
|
return
|
||||||
|
}
|
||||||
|
|
||||||
const { data } = await fetchUserRoutes({
|
const { data } = await fetchUserRoutes({
|
||||||
id: userInfo.id,
|
id: userInfo.id,
|
||||||
|
23
src/typings/api.d.ts
vendored
23
src/typings/api.d.ts
vendored
@ -2,19 +2,24 @@
|
|||||||
|
|
||||||
/** 后端返回的用户相关类型 */
|
/** 后端返回的用户相关类型 */
|
||||||
declare namespace ApiAuth {
|
declare namespace ApiAuth {
|
||||||
/** 返回的用户信息 */
|
/* 登录返回的用户字段 */
|
||||||
type UserInfo = Auth.UserInfo
|
interface loginInfo {
|
||||||
/* 登录token字段 */
|
/** 用户id */
|
||||||
interface loginToken {
|
|
||||||
accessToken: string
|
|
||||||
avatar?: string
|
|
||||||
email?: string
|
|
||||||
id: number
|
id: number
|
||||||
|
/** 用户名 */
|
||||||
|
username: string
|
||||||
|
/* 用户头像 */
|
||||||
|
avatar?: string
|
||||||
|
/* 用户邮箱 */
|
||||||
|
email?: string
|
||||||
|
/* 用户昵称 */
|
||||||
nickname?: string
|
nickname?: string
|
||||||
notes?: string
|
notes?: string
|
||||||
refreshToken: string
|
|
||||||
tel?: string
|
tel?: string
|
||||||
username: string
|
/** 用户角色类型 */
|
||||||
|
role: Auth.RoleType
|
||||||
|
accessToken: string
|
||||||
|
refreshToken: string
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
declare namespace CommonList {
|
declare namespace CommonList {
|
||||||
|
13
src/typings/business.d.ts
vendored
13
src/typings/business.d.ts
vendored
@ -2,19 +2,6 @@
|
|||||||
declare namespace Auth {
|
declare namespace Auth {
|
||||||
/** 用户角色类型 */
|
/** 用户角色类型 */
|
||||||
type RoleType = 'super' | 'admin' | 'user'
|
type RoleType = 'super' | 'admin' | 'user'
|
||||||
interface UserInfo {
|
|
||||||
/** 用户id */
|
|
||||||
id: number
|
|
||||||
/** 用户名 */
|
|
||||||
userName: string
|
|
||||||
/* 用户称呼 */
|
|
||||||
nickName: string
|
|
||||||
/* 用户头像 */
|
|
||||||
avatar: string
|
|
||||||
/** 用户角色类型 */
|
|
||||||
role: RoleType
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
/* 系统消息 */
|
/* 系统消息 */
|
||||||
declare namespace Message {
|
declare namespace Message {
|
||||||
|
2
src/typings/global.d.ts
vendored
2
src/typings/global.d.ts
vendored
@ -26,7 +26,7 @@ declare namespace Storage {
|
|||||||
}
|
}
|
||||||
|
|
||||||
interface Local {
|
interface Local {
|
||||||
userInfo: Auth.UserInfo
|
userInfo: ApiAuth.loginInfo
|
||||||
token: string
|
token: string
|
||||||
refreshToken: string
|
refreshToken: string
|
||||||
tabsRoutes: string
|
tabsRoutes: string
|
||||||
|
@ -20,7 +20,7 @@ const { userInfo } = useAuthStore()
|
|||||||
/>
|
/>
|
||||||
<div class="pl-12px">
|
<div class="pl-12px">
|
||||||
<h3 class="text-18px font-semibold">
|
<h3 class="text-18px font-semibold">
|
||||||
您好,{{ userInfo?.nickName }},今天又是充满活力的一天!
|
您好,{{ userInfo?.nickname }},今天又是充满活力的一天!
|
||||||
</h3>
|
</h3>
|
||||||
<p class="leading-30px text-[#999]">
|
<p class="leading-30px text-[#999]">
|
||||||
今日多云转晴,20℃ - 25℃!
|
今日多云转晴,20℃ - 25℃!
|
||||||
|
@ -48,7 +48,7 @@ function handleValidateClick() {
|
|||||||
<n-space size="large">
|
<n-space size="large">
|
||||||
<n-avatar round :size="128" :src="userInfo?.avatar" />
|
<n-avatar round :size="128" :src="userInfo?.avatar" />
|
||||||
|
|
||||||
<n-descriptions label-placement="left" :column="2" :title="`傍晚好,${userInfo?.nickName},这里是简单的个人中心模板`">
|
<n-descriptions label-placement="left" :column="2" :title="`傍晚好,${userInfo?.nickname},这里是简单的个人中心模板`">
|
||||||
<n-descriptions-item label="id">
|
<n-descriptions-item label="id">
|
||||||
{{ userInfo?.id }}
|
{{ userInfo?.id }}
|
||||||
</n-descriptions-item>
|
</n-descriptions-item>
|
||||||
@ -56,7 +56,7 @@ function handleValidateClick() {
|
|||||||
{{ userInfo?.userName }}
|
{{ userInfo?.userName }}
|
||||||
</n-descriptions-item>
|
</n-descriptions-item>
|
||||||
<n-descriptions-item label="真实名称">
|
<n-descriptions-item label="真实名称">
|
||||||
{{ userInfo?.nickName }}
|
{{ userInfo?.nickname }}
|
||||||
</n-descriptions-item>
|
</n-descriptions-item>
|
||||||
<n-descriptions-item label="角色">
|
<n-descriptions-item label="角色">
|
||||||
{{ userInfo?.role }}
|
{{ userInfo?.role }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user