mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
fix: remove appRouter hook
This commit is contained in:
parent
811ad3609b
commit
3a53910c3e
@ -1,12 +1,9 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAppRouter } from '@/hooks'
|
|
||||||
|
|
||||||
type TipType = '403' | '404' | '500'
|
|
||||||
defineProps<{
|
defineProps<{
|
||||||
/** 异常类型 403 404 500 */
|
/** 异常类型 403 404 500 */
|
||||||
type: TipType
|
type: '403' | '404' | '500'
|
||||||
}>()
|
}>()
|
||||||
const { toRoot } = useAppRouter()
|
const router = useRouter()
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@ -31,11 +28,9 @@ const { toRoot } = useAppRouter()
|
|||||||
>
|
>
|
||||||
<n-button
|
<n-button
|
||||||
type="primary"
|
type="primary"
|
||||||
@click="toRoot"
|
@click="router.push('/')"
|
||||||
>
|
>
|
||||||
回到首页
|
回到首页
|
||||||
</n-button>
|
</n-button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped></style>
|
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAppInfo } from '@/hooks'
|
const name = import.meta.env.VITE_APP_NAME
|
||||||
|
|
||||||
const { name } = useAppInfo()
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -1,4 +1,3 @@
|
|||||||
export * from './useAppRouter'
|
|
||||||
export * from './useBoolean'
|
export * from './useBoolean'
|
||||||
export * from './useLoading'
|
export * from './useLoading'
|
||||||
export * from './useEcharts'
|
export * from './useEcharts'
|
||||||
|
@ -1,58 +0,0 @@
|
|||||||
import type { RouteLocationRaw } from 'vue-router'
|
|
||||||
import { router as gobalRouter } from '@/router'
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @description: 全局路由方法,vue-router自带的useRouter,在根目录下不能用
|
|
||||||
* @param {*} isSetup
|
|
||||||
* @return {*}
|
|
||||||
*/
|
|
||||||
export function useAppRouter(isSetup = true) {
|
|
||||||
const router = isSetup ? useRouter() : gobalRouter
|
|
||||||
const route = router.currentRoute
|
|
||||||
|
|
||||||
/* 路由跳转方法 */
|
|
||||||
async function routerPush(to: RouteLocationRaw) {
|
|
||||||
await router.push(to)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 路由跳转方法 */
|
|
||||||
async function routerReplace(to: RouteLocationRaw) {
|
|
||||||
await router.replace(to)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 前进后退方法 */
|
|
||||||
function routerGo(delta: number) {
|
|
||||||
router.go(delta)
|
|
||||||
}
|
|
||||||
|
|
||||||
/* 跳转根页方法 */
|
|
||||||
async function toRoot() {
|
|
||||||
await routerPush({ path: '/appRoot' })
|
|
||||||
}
|
|
||||||
/* 跳转至登录页 */
|
|
||||||
async function toLogin(redirectUrl?: string) {
|
|
||||||
const redirect = redirectUrl || route.value.fullPath
|
|
||||||
const targetUrl = {
|
|
||||||
name: 'login',
|
|
||||||
query: { redirect },
|
|
||||||
}
|
|
||||||
await routerPush(targetUrl)
|
|
||||||
}
|
|
||||||
/* 跳转重定向方法 */
|
|
||||||
async function toLoginRedirect() {
|
|
||||||
const { query } = route.value
|
|
||||||
if (query?.redirect)
|
|
||||||
await routerPush(query.redirect as string)
|
|
||||||
else
|
|
||||||
await toRoot()
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
routerPush,
|
|
||||||
routerReplace,
|
|
||||||
routerGo,
|
|
||||||
toRoot,
|
|
||||||
toLogin,
|
|
||||||
toLoginRedirect,
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,20 +1,6 @@
|
|||||||
import { isArray, isString } from 'radash'
|
import { isArray, isString } from 'radash'
|
||||||
import { useAuthStore } from '@/store'
|
import { useAuthStore } from '@/store'
|
||||||
|
|
||||||
interface AppInfo {
|
|
||||||
/** 项目名称 */
|
|
||||||
name: string
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 项目信息 */
|
|
||||||
export function useAppInfo(): AppInfo {
|
|
||||||
const { VITE_APP_NAME: name } = import.meta.env
|
|
||||||
|
|
||||||
return {
|
|
||||||
name,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 权限判断 */
|
/** 权限判断 */
|
||||||
export function usePermission() {
|
export function usePermission() {
|
||||||
const authStore = useAuthStore()
|
const authStore = useAuthStore()
|
||||||
|
@ -1,16 +1,16 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAppStore } from '@/store'
|
import { useAppStore } from '@/store'
|
||||||
import { useAppInfo, useAppRouter } from '@/hooks'
|
|
||||||
|
|
||||||
const { name } = useAppInfo()
|
const router = useRouter()
|
||||||
const { toRoot } = useAppRouter()
|
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
|
|
||||||
|
const name = import.meta.env.VITE_APP_NAME
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
class="h-60px text-2xl flex-center overflow-hidden cursor-pointer"
|
class="h-60px text-2xl flex-center overflow-hidden cursor-pointer"
|
||||||
@click="toRoot"
|
@click="router.push('/')"
|
||||||
>
|
>
|
||||||
<SvgIcon
|
<SvgIcon
|
||||||
name="logo"
|
name="logo"
|
||||||
|
@ -1,16 +1,14 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import type { RouteLocationNormalized } from 'vue-router'
|
import type { RouteLocationNormalized } from 'vue-router'
|
||||||
import { useAppStore, useTabStore } from '@/store'
|
import { useAppStore, useTabStore } from '@/store'
|
||||||
import { useAppRouter } from '@/hooks'
|
|
||||||
import { renderIcon } from '@/utils'
|
import { renderIcon } from '@/utils'
|
||||||
|
|
||||||
const tabStore = useTabStore()
|
const tabStore = useTabStore()
|
||||||
const appStore = useAppStore()
|
const appStore = useAppStore()
|
||||||
|
|
||||||
const { routerPush, toRoot } = useAppRouter()
|
const router = useRouter()
|
||||||
|
|
||||||
function handleTab(route: RouteLocationNormalized) {
|
function handleTab(route: RouteLocationNormalized) {
|
||||||
routerPush(route.path)
|
router.push(route.path)
|
||||||
}
|
}
|
||||||
function handleClose(name: string) {
|
function handleClose(name: string) {
|
||||||
tabStore.closeTab(name)
|
tabStore.closeTab(name)
|
||||||
@ -107,7 +105,7 @@ function onClickoutside() {
|
|||||||
v-for="item in tabStore.inherentTab"
|
v-for="item in tabStore.inherentTab"
|
||||||
:key="item.path"
|
:key="item.path"
|
||||||
:name="item.name"
|
:name="item.name"
|
||||||
@click="toRoot"
|
@click="router.push('/')"
|
||||||
>
|
>
|
||||||
{{ item.title }}
|
{{ item.title }}
|
||||||
</n-tab>
|
</n-tab>
|
||||||
|
@ -8,7 +8,6 @@ export async function createPermissionGuard(
|
|||||||
next: NavigationGuardNext,
|
next: NavigationGuardNext,
|
||||||
) {
|
) {
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
|
|
||||||
// 判断有无TOKEN,登录鉴权
|
// 判断有无TOKEN,登录鉴权
|
||||||
const isLogin = Boolean(local.get('token'))
|
const isLogin = Boolean(local.get('token'))
|
||||||
if (!isLogin) {
|
if (!isLogin) {
|
||||||
@ -26,23 +25,27 @@ export async function createPermissionGuard(
|
|||||||
if (!routeStore.isInitAuthRoute) {
|
if (!routeStore.isInitAuthRoute) {
|
||||||
await routeStore.initAuthRoute()
|
await routeStore.initAuthRoute()
|
||||||
// 动态路由加载完回到根路由
|
// 动态路由加载完回到根路由
|
||||||
if (to.name === '404' && to.redirectedFrom) {
|
if (to.name === '404') {
|
||||||
// 等待权限路由加载好了,回到之前的路由,否则404
|
// 等待权限路由加载好了,回到之前的路由,否则404
|
||||||
const path = to.redirectedFrom?.fullPath
|
next({
|
||||||
next({ path, replace: true, query: to.query, hash: to.hash })
|
path: to.fullPath,
|
||||||
|
replace: true,
|
||||||
|
query: to.query,
|
||||||
|
hash: to.hash,
|
||||||
|
})
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 权限路由已经加载,仍然未找到,重定向到404
|
// 权限路由已经加载,仍然未找到,重定向到404
|
||||||
// if (to.name === '404') {
|
if (to.name === '404') {
|
||||||
// next({ name: '404', replace: true });
|
next({ name: '404', replace: true })
|
||||||
// return false;
|
return false
|
||||||
// }
|
}
|
||||||
|
|
||||||
// 判断当前页是否在login,则定位去首页
|
// 判断当前页是否在login,则定位去首页
|
||||||
if (to.name === 'login') {
|
if (to.name === 'login') {
|
||||||
next({ path: '/appRoot' })
|
next({ path: '/' })
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
import { useRouteStore } from './route'
|
import { useRouteStore } from './route'
|
||||||
import { fetchLogin, fetchUserInfo } from '@/service'
|
import { fetchLogin, fetchUserInfo } from '@/service'
|
||||||
import { router } from '@/router'
|
import { router } from '@/router'
|
||||||
import { useAppRouter } from '@/hooks'
|
|
||||||
import { local } from '@/utils'
|
import { local } from '@/utils'
|
||||||
|
|
||||||
const emptyInfo: Auth.UserInfo = {
|
const emptyInfo: Auth.UserInfo = {
|
||||||
@ -30,15 +29,20 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
/* 登录退出,重置用户信息等 */
|
/* 登录退出,重置用户信息等 */
|
||||||
async resetAuthStore() {
|
async resetAuthStore() {
|
||||||
const route = unref(router.currentRoute)
|
const route = unref(router.currentRoute)
|
||||||
const { toLogin } = useAppRouter(false)
|
|
||||||
// 清除本地缓存
|
// 清除本地缓存
|
||||||
this.clearAuthStorage()
|
this.clearAuthStorage()
|
||||||
// 清空路由、菜单等数据
|
// 清空路由、菜单等数据
|
||||||
const routeStore = useRouteStore()
|
const routeStore = useRouteStore()
|
||||||
routeStore.resetRouteStore()
|
routeStore.resetRouteStore()
|
||||||
this.$reset()
|
this.$reset()
|
||||||
if (route.meta.requiresAuth)
|
if (route.meta.requiresAuth) {
|
||||||
await toLogin()
|
router.push({
|
||||||
|
name: 'login',
|
||||||
|
query: {
|
||||||
|
redirect: route.fullPath,
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
||||||
},
|
},
|
||||||
clearAuthStorage() {
|
clearAuthStorage() {
|
||||||
local.remove('token')
|
local.remove('token')
|
||||||
@ -72,8 +76,11 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
// 登录写入信息成功
|
// 登录写入信息成功
|
||||||
if (catchSuccess) {
|
if (catchSuccess) {
|
||||||
// 进行重定向跳转
|
// 进行重定向跳转
|
||||||
const { toLoginRedirect } = useAppRouter(false)
|
const route = unref(router.currentRoute)
|
||||||
await toLoginRedirect()
|
const query = route.query as { redirect: string }
|
||||||
|
router.push({
|
||||||
|
path: query.redirect || '/',
|
||||||
|
})
|
||||||
|
|
||||||
// 触发用户提示
|
// 触发用户提示
|
||||||
window.$notification?.success({
|
window.$notification?.success({
|
||||||
@ -106,8 +113,5 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
|
|
||||||
return catchSuccess
|
return catchSuccess
|
||||||
},
|
},
|
||||||
async toggleUserRole(role: Auth.RoleType) {
|
|
||||||
await this.login(role, '123456')
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
@ -123,16 +123,16 @@ export const useRouteStore = defineStore('route-store', {
|
|||||||
if (!userInfo || !userInfo.id)
|
if (!userInfo || !userInfo.id)
|
||||||
return
|
return
|
||||||
|
|
||||||
const { data: routes } = await fetchUserRoutes({
|
const { data } = await fetchUserRoutes({
|
||||||
id: userInfo.id,
|
id: userInfo.id,
|
||||||
})
|
})
|
||||||
|
|
||||||
if (!routes)
|
if (!data)
|
||||||
return
|
return
|
||||||
// 根据用户返回的路由表来生成真实路由
|
// 根据用户返回的路由表来生成真实路由
|
||||||
const appRoutes = createDynamicRoutes(routes)
|
const appRoutes = createDynamicRoutes(data)
|
||||||
// 生成侧边菜单
|
// 生成侧边菜单
|
||||||
this.createMenus(routes)
|
this.createMenus(data)
|
||||||
// 插入路由表
|
// 插入路由表
|
||||||
router.addRoute(appRoutes)
|
router.addRoute(appRoutes)
|
||||||
},
|
},
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import type { RouteLocationNormalized } from 'vue-router'
|
import type { RouteLocationNormalized } from 'vue-router'
|
||||||
import { useAppRouter } from '@/hooks'
|
import { router } from '@/router'
|
||||||
|
|
||||||
interface TabState {
|
interface TabState {
|
||||||
inherentTab: {
|
inherentTab: {
|
||||||
@ -50,7 +50,6 @@ export const useTabStore = defineStore('tab-store', {
|
|||||||
this.tabs.push(route)
|
this.tabs.push(route)
|
||||||
},
|
},
|
||||||
async closeTab(name: string) {
|
async closeTab(name: string) {
|
||||||
const { routerPush, toRoot } = useAppRouter(false)
|
|
||||||
const tabsLength = this.tabs.length
|
const tabsLength = this.tabs.length
|
||||||
// 如果动态标签大于一个,才会标签跳转
|
// 如果动态标签大于一个,才会标签跳转
|
||||||
if (this.tabs.length > 1) {
|
if (this.tabs.length > 1) {
|
||||||
@ -60,11 +59,11 @@ export const useTabStore = defineStore('tab-store', {
|
|||||||
// 如果是关闭的当前页面,路由跳转到原先标签的后一个标签
|
// 如果是关闭的当前页面,路由跳转到原先标签的后一个标签
|
||||||
if (this.currentTab === name && !isLast) {
|
if (this.currentTab === name && !isLast) {
|
||||||
// 跳转到后一个标签
|
// 跳转到后一个标签
|
||||||
await routerPush(this.tabs[index + 1].path)
|
router.push(this.tabs[index + 1].path)
|
||||||
}
|
}
|
||||||
else if (this.currentTab === name && isLast) {
|
else if (this.currentTab === name && isLast) {
|
||||||
// 已经是最后一个了,就跳转前一个
|
// 已经是最后一个了,就跳转前一个
|
||||||
await routerPush(this.tabs[index - 1].path)
|
router.push(this.tabs[index - 1].path)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 删除标签
|
// 删除标签
|
||||||
@ -73,7 +72,7 @@ export const useTabStore = defineStore('tab-store', {
|
|||||||
})
|
})
|
||||||
// 删除后如果清空了,就跳转到默认首页
|
// 删除后如果清空了,就跳转到默认首页
|
||||||
if (tabsLength - 1 === 0)
|
if (tabsLength - 1 === 0)
|
||||||
await toRoot()
|
router.push('/')
|
||||||
},
|
},
|
||||||
|
|
||||||
closeOtherTabs(name: string) {
|
closeOtherTabs(name: string) {
|
||||||
@ -89,9 +88,8 @@ export const useTabStore = defineStore('tab-store', {
|
|||||||
this.tabs = this.tabs.filter((item, i) => i <= index)
|
this.tabs = this.tabs.filter((item, i) => i <= index)
|
||||||
},
|
},
|
||||||
async closeAllTabs() {
|
async closeAllTabs() {
|
||||||
const { toRoot } = useAppRouter(false)
|
|
||||||
this.tabs.length = 0
|
this.tabs.length = 0
|
||||||
await toRoot()
|
router.push('/')
|
||||||
},
|
},
|
||||||
|
|
||||||
hasExistTab(name: string) {
|
hasExistTab(name: string) {
|
||||||
|
@ -7,13 +7,17 @@ const { hasPermission } = usePermission()
|
|||||||
const { role } = authStore.userInfo
|
const { role } = authStore.userInfo
|
||||||
|
|
||||||
const roleList: Auth.RoleType[] = ['super', 'admin', 'user']
|
const roleList: Auth.RoleType[] = ['super', 'admin', 'user']
|
||||||
|
|
||||||
|
function toggleUserRole(role: Auth.RoleType) {
|
||||||
|
authStore.login(role, '123456')
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<n-card title="权限示例">
|
<n-card title="权限示例">
|
||||||
<n-h1> 当前权限:{{ role }}</n-h1>
|
<n-h1> 当前权限:{{ role }}</n-h1>
|
||||||
<n-button-group>
|
<n-button-group>
|
||||||
<n-button v-for="item in roleList" :key="item" type="default" @click="authStore.toggleUserRole(item)">
|
<n-button v-for="item in roleList" :key="item" type="default" @click="toggleUserRole(item)">
|
||||||
{{ item }}
|
{{ item }}
|
||||||
</n-button>
|
</n-button>
|
||||||
</n-button-group>
|
</n-button-group>
|
||||||
|
@ -1,13 +1,11 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAppRouter } from '@/hooks'
|
const router = useRouter()
|
||||||
|
|
||||||
const { routerPush } = useAppRouter()
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div text-center>
|
<div text-center>
|
||||||
这个页面包含了一个不在侧边菜单的详情页面
|
这个页面包含了一个不在侧边菜单的详情页面
|
||||||
<n-button @click="routerPush('/test/test2/detail')">
|
<n-button @click="router.push('/test/test2/detail')">
|
||||||
跳转详情子页
|
跳转详情子页
|
||||||
</n-button>
|
</n-button>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user