diff --git a/src/layouts/BasicLayout/index.vue b/src/layouts/BasicLayout/index.vue
index ef83306..be319f2 100644
--- a/src/layouts/BasicLayout/index.vue
+++ b/src/layouts/BasicLayout/index.vue
@@ -21,9 +21,9 @@
-
+
-
+
diff --git a/src/layouts/components/tab/TabBar.vue b/src/layouts/components/tab/TabBar.vue
index f166cb5..7f79cf3 100644
--- a/src/layouts/components/tab/TabBar.vue
+++ b/src/layouts/components/tab/TabBar.vue
@@ -1,7 +1,24 @@
-
+
+
+ 工作台
+
+ {{ item.meta.title }}
+
+
+
-
+
diff --git a/src/router/guard/permission.ts b/src/router/guard/permission.ts
index c8d8346..8de96a4 100644
--- a/src/router/guard/permission.ts
+++ b/src/router/guard/permission.ts
@@ -1,6 +1,6 @@
import { RouteLocationNormalized, NavigationGuardNext } from 'vue-router';
import { getToken } from '@/utils/auth';
-import { useRouteStore } from '@/store';
+import { useRouteStore, useTabStore } from '@/store';
export async function createPermissionGuard(
to: RouteLocationNormalized,
@@ -9,6 +9,7 @@ export async function createPermissionGuard(
) {
const isLogin = Boolean(getToken());
const routeStore = useRouteStore();
+ const tabStore = useTabStore();
// 判断路由有无进行初始化
if (!routeStore.isInitAuthRoute) {
@@ -41,6 +42,7 @@ export async function createPermissionGuard(
} else {
routeStore.setActiveMenu(to.fullPath);
}
-
+ // 添加动态tabs
+ tabStore.addTab(to);
next();
}
diff --git a/src/store/modules/index.ts b/src/store/modules/index.ts
index bf5ca14..ab9c9d3 100644
--- a/src/store/modules/index.ts
+++ b/src/store/modules/index.ts
@@ -1,3 +1,4 @@
export * from './app';
export * from './auth';
export * from './route';
+export * from './tab';
diff --git a/src/store/modules/tab.ts b/src/store/modules/tab.ts
new file mode 100644
index 0000000..ca379e1
--- /dev/null
+++ b/src/store/modules/tab.ts
@@ -0,0 +1,18 @@
+import { defineStore } from 'pinia';
+import { RouteLocationNormalized } from 'vue-router';
+
+interface TabState {
+ tabs: RouteLocationNormalized[];
+}
+export const useTabStore = defineStore('tab-store', {
+ state: (): TabState => {
+ return {
+ tabs: [],
+ };
+ },
+ actions: {
+ addTab(route: RouteLocationNormalized) {
+ this.tabs.push(route);
+ },
+ },
+});
diff --git a/src/types/route.d.ts b/src/types/route.d.ts
index e5553b6..3b2c50d 100644
--- a/src/types/route.d.ts
+++ b/src/types/route.d.ts
@@ -25,7 +25,7 @@ declare namespace AppRoute {
/** 路由描述 */
interface RouteMeta {
/* 页面标题,通常必选。 */
- title?: string;
+ title: string;
/* 图标,一般配合菜单使用 */
icon?: string;
/* 是否需要登录权限。*/