mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat(auth): 侧边栏改为根据返回路由动态渲染
BREAKING CHANGE: 未完成
This commit is contained in:
parent
5ce9290ca5
commit
ba443b4a39
@ -16,14 +16,60 @@ const userInfo = {
|
|||||||
permissions: [
|
permissions: [
|
||||||
{
|
{
|
||||||
label: '主控台',
|
label: '主控台',
|
||||||
value: 'dashboard_console',
|
key: 'dashboard_console',
|
||||||
icon: 'icon-park-outline:alarm',
|
icon: 'icon-park-outline:alarm',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '监控页',
|
label: '监控页',
|
||||||
value: 'dashboard_monitor',
|
key: 'dashboard_monitor',
|
||||||
icon: 'icon-park-outline:anchor',
|
icon: 'icon-park-outline:anchor',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: 'test1',
|
||||||
|
key: '/test1',
|
||||||
|
icon: 'icon-park-outline:alarm',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'test2',
|
||||||
|
key: '/test2',
|
||||||
|
icon: 'icon-park-outline:pic',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: 'test3',
|
||||||
|
key: '/test3',
|
||||||
|
icon: 'icon-park-outline:tool',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '舞,舞,舞',
|
||||||
|
key: 'dance-dance-dance',
|
||||||
|
icon: 'icon-park-outline:command',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
label: '饮品',
|
||||||
|
key: 'beverage',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
label: '威士忌',
|
||||||
|
key: 'whisky',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '食物',
|
||||||
|
key: 'food',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
label: '三明治',
|
||||||
|
key: 'sandwich',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: '过去增多,未来减少',
|
||||||
|
key: 'the-past-increases-the-future-recedes',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
],
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
:collapsed-width="64"
|
:collapsed-width="64"
|
||||||
:collapsed-icon-size="24"
|
:collapsed-icon-size="24"
|
||||||
:indent="20"
|
:indent="20"
|
||||||
:options="menuOptions"
|
:options="routesStore.menus"
|
||||||
@update:value="handleClickMenu"
|
@update:value="handleClickMenu"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
@ -12,64 +12,15 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { useAppStore } from '@/store';
|
import { useAppStore } from '@/store';
|
||||||
import { useAppRouter } from '@/hook';
|
import { useAppRouter } from '@/hook';
|
||||||
import type { MenuOption } from 'naive-ui';
|
import { useRouteStore } from '~/src/store/modules/route';
|
||||||
import { renderIcon } from '@/utils/icon';
|
|
||||||
|
|
||||||
const { routerPush } = useAppRouter();
|
const { routerPush } = useAppRouter();
|
||||||
const appStore = useAppStore();
|
const appStore = useAppStore();
|
||||||
|
const routesStore = useRouteStore();
|
||||||
|
|
||||||
const handleClickMenu = (key: string) => {
|
const handleClickMenu = (key: string) => {
|
||||||
routerPush(key);
|
routerPush(key);
|
||||||
};
|
};
|
||||||
const menuOptions: MenuOption[] = [
|
|
||||||
{
|
|
||||||
label: 'test1',
|
|
||||||
key: '/test1',
|
|
||||||
icon: renderIcon('icon-park-outline:alarm'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'test2',
|
|
||||||
key: '/test2',
|
|
||||||
icon: renderIcon('icon-park-outline:tool'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: 'test3',
|
|
||||||
key: '/test3',
|
|
||||||
icon: renderIcon('icon-park-outline:pic'),
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '舞,舞,舞',
|
|
||||||
key: 'dance-dance-dance',
|
|
||||||
icon: renderIcon('icon-park-outline:command'),
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
label: '饮品',
|
|
||||||
key: 'beverage',
|
|
||||||
// icon: renderIcon(WineIcon),
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
label: '威士忌',
|
|
||||||
key: 'whisky',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '食物',
|
|
||||||
key: 'food',
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
label: '三明治',
|
|
||||||
key: 'sandwich',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: '过去增多,未来减少',
|
|
||||||
key: 'the-past-increases-the-future-recedes',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
];
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped></style>
|
<style scoped></style>
|
||||||
|
@ -4,6 +4,7 @@ import { setUserInfo, getUserInfo, getToken, setToken, clearAuthStorage } from '
|
|||||||
import { router } from '@/router';
|
import { router } from '@/router';
|
||||||
import { useAppRouter } from '@/hook';
|
import { useAppRouter } from '@/hook';
|
||||||
import { unref } from 'vue';
|
import { unref } from 'vue';
|
||||||
|
import { useRouteStore } from './route';
|
||||||
|
|
||||||
export const useAuthStore = defineStore('auth-store', {
|
export const useAuthStore = defineStore('auth-store', {
|
||||||
state: () => {
|
state: () => {
|
||||||
@ -49,7 +50,7 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
// 等待数据写入完成
|
// 等待数据写入完成
|
||||||
const catchSuccess = await this.catchUserInfo(data);
|
const catchSuccess = await this.catchUserInfo(data);
|
||||||
// 初始化侧边菜单
|
// 初始化侧边菜单
|
||||||
|
await this.setRouterStore(data.permissions);
|
||||||
// 登录写入信息成功
|
// 登录写入信息成功
|
||||||
if (catchSuccess) {
|
if (catchSuccess) {
|
||||||
// 进行重定向跳转
|
// 进行重定向跳转
|
||||||
@ -81,5 +82,11 @@ export const useAuthStore = defineStore('auth-store', {
|
|||||||
|
|
||||||
return catchSuccess;
|
return catchSuccess;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/* 将路由表等信息推送到routeStore */
|
||||||
|
async setRouterStore(permissions: Auth.UserInfoPermissions[]) {
|
||||||
|
const { setMenus } = useRouteStore();
|
||||||
|
setMenus(permissions);
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -1,15 +1,28 @@
|
|||||||
import { defineStore } from 'pinia';
|
import { defineStore } from 'pinia';
|
||||||
|
import { renderIcon } from '@/utils/icon';
|
||||||
|
|
||||||
|
interface RuutesStatus {
|
||||||
|
menus: any;
|
||||||
|
}
|
||||||
export const useRouteStore = defineStore('route-store', {
|
export const useRouteStore = defineStore('route-store', {
|
||||||
state: () => {
|
state: (): RuutesStatus => {
|
||||||
return {
|
return {
|
||||||
menus: [],
|
menus: [],
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
actions: {
|
actions: {
|
||||||
setMenus(data: any) {
|
setMenus(data: Auth.UserInfoPermissions[]) {
|
||||||
// TODO不应为any
|
this.menus = this.transformAuthRoutesToMenus(data);
|
||||||
this.menus = data;
|
},
|
||||||
|
// 将返回的路由表渲染成侧边栏
|
||||||
|
transformAuthRoutesToMenus(data: Auth.UserInfoPermissions[]) {
|
||||||
|
return data.map((item) => {
|
||||||
|
item.icon = renderIcon(item.icon);
|
||||||
|
if (item.children) {
|
||||||
|
this.transformAuthRoutesToMenus(item.children);
|
||||||
|
}
|
||||||
|
return item;
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
8
src/types/business.d.ts
vendored
8
src/types/business.d.ts
vendored
@ -26,6 +26,12 @@ declare namespace Auth {
|
|||||||
/* token */
|
/* token */
|
||||||
token: string;
|
token: string;
|
||||||
/* 权限路由 */
|
/* 权限路由 */
|
||||||
permissions: [];
|
permissions: UserInfoPermissions[];
|
||||||
|
}
|
||||||
|
interface UserInfoPermissions {
|
||||||
|
label: string;
|
||||||
|
key: string;
|
||||||
|
icon: any;
|
||||||
|
children: UserInfoPermissions[];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
7
src/types/system.d.ts
vendored
7
src/types/system.d.ts
vendored
@ -12,3 +12,10 @@ declare namespace Service {
|
|||||||
successCode: number | string;
|
successCode: number | string;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/** 菜单项配置 */
|
||||||
|
type GlobalMenuOption = import('naive-ui').MenuOption & {
|
||||||
|
key: string;
|
||||||
|
label: string;
|
||||||
|
icon?: () => import('vue').VNodeChild;
|
||||||
|
children?: GlobalMenuOption[];
|
||||||
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user