diff --git a/src/components/custom/IconSelect/index.vue b/src/components/custom/IconSelect/index.vue
index 7e0adef..e51a970 100644
--- a/src/components/custom/IconSelect/index.vue
+++ b/src/components/custom/IconSelect/index.vue
@@ -1,7 +1,7 @@
@@ -18,9 +18,9 @@ function handleSelectIcon(icon: string) {
-
+
-
+
diff --git a/src/service/api/system.ts b/src/service/api/system.ts
new file mode 100644
index 0000000..1fa9b9a
--- /dev/null
+++ b/src/service/api/system.ts
@@ -0,0 +1,5 @@
+import { request } from '../http'
+
+export function fetchAllRoutes() {
+ return request.Get >('/getUserRoutes')
+}
diff --git a/src/service/index.ts b/src/service/index.ts
index ff23946..d292e81 100644
--- a/src/service/index.ts
+++ b/src/service/index.ts
@@ -1,3 +1,4 @@
-export * from './api/list'
+export * from './api/system'
export * from './api/login'
+export * from './api/list'
export * from './api/test'
diff --git a/src/store/tab.ts b/src/store/tab.ts
index 6e79ef7..047019f 100644
--- a/src/store/tab.ts
+++ b/src/store/tab.ts
@@ -100,7 +100,7 @@ export const useTabStore = defineStore('tab-store', {
enabled: true,
strategies: [
{
- storage: localStorage,
+ storage: sessionStorage,
},
],
},
diff --git a/src/typings/route.d.ts b/src/typings/route.d.ts
index 7b89166..214787c 100644
--- a/src/typings/route.d.ts
+++ b/src/typings/route.d.ts
@@ -1,7 +1,9 @@
declare namespace AppRoute {
+
+ type MenuType = 'dir' | 'page'
/** 单个路由所携带的meta标识 */
interface RouteMeta {
- /* 页面标题,通常必选。 */
+ /* 页面标题,通常必选。 */
title: string
/* 图标,一般配合菜单使用 */
icon?: string
@@ -17,14 +19,14 @@ declare namespace AppRoute {
order?: number
/* 嵌套外链 */
herf?: string
- /** 当前路由需要选中的菜单项,用于跳转至不在左侧菜单显示的路由且需要高亮某个菜单的情况 */
+ /** 当前路由不在左侧菜单显示,但需要需要高亮某个菜单的情况 */
activeMenu?: string
/** 当前路由是否会被添加到Tab中 */
withoutTab?: boolean
/** 当前路由是否会被固定在Tab中,用于一些常驻页面 */
pinTab?: boolean
/** 当前路由在左侧菜单是目录还是页面,不设置默认为page */
- menuType?: 'dir' | 'page'
+ menuType?: MenuType
}
interface baseRoute {
diff --git a/src/utils/icon.ts b/src/utils/icon.ts
index a4c8fe0..cfccc55 100644
--- a/src/utils/icon.ts
+++ b/src/utils/icon.ts
@@ -1,6 +1,6 @@
import { Icon } from '@iconify/vue'
import { NIcon } from 'naive-ui'
-export function renderIcon(icon: string) {
- return () => h(NIcon, null, { default: () => h(Icon, { icon }) })
+export function renderIcon(icon: string, props?: import('naive-ui').IconProps) {
+ return () => h(NIcon, props, { default: () => h(Icon, { icon }) })
}
diff --git a/src/views/setting/menu/components/TableModal.vue b/src/views/setting/menu/components/TableModal.vue
new file mode 100644
index 0000000..9699cc8
--- /dev/null
+++ b/src/views/setting/menu/components/TableModal.vue
@@ -0,0 +1,255 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 目录
+
+
+ 页面
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 取消
+
+
+ 提交
+
+
+
+
+
+
+
diff --git a/src/views/setting/menu/index.vue b/src/views/setting/menu/index.vue
index 34951f9..99fefc4 100644
--- a/src/views/setting/menu/index.vue
+++ b/src/views/setting/menu/index.vue
@@ -1,7 +1,141 @@
-
+
- 菜单设置
+
+
+
+
+
+
+
+ 新建
+
+
+
+
+
+
-
-