Browse Source

添加路由回收站

tangning 1 day ago
parent
commit
3053bdb366
1 changed files with 8 additions and 1 deletions
  1. 8 1
      src/app/xmfire/routeConfig.ts

+ 8 - 1
src/app/xmfire/routeConfig.ts

@@ -5,6 +5,7 @@ export const FireRouteName = {
   ...RouteName,
   dispatch: "dispatch",
   teaching: "teaching",
+  recycle: "caseRecovery",
 } as const;
 
 export const menuRouteNames = [
@@ -35,5 +36,11 @@ export const routes: Routes = [
     path: "teaching",
     component: () => import("../fire/view/dispatch/index.vue"),
     meta: { title: "教学平台", icon: "iconfire_study" },
-  }
+  },
+  {
+    name: FireRouteName.recycle,
+    path: "recycle",
+    component: () => import("../fire/view/dispatch/index.vue"),
+    meta: { title: "回收站", icon: "icon-del" },
+  },
 ];