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