You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1.1 KiB

4 years ago
import BasicLayout from "@/layouts/home";
4 years ago
4 years ago
const meta = {};
4 years ago
4 years ago
const pre = "achievement-";
4 years ago
export default {
4 years ago
path: "/achievement",
name: "achievement",
4 years ago
redirect: {
name: `${pre}list`
},
meta,
component: BasicLayout,
children: [
{
name: `${pre}list`,
path: `list`,
4 years ago
component: () => import("@/pages/achievement/list"),
meta: { title: "成绩管理" }
}, {
4 years ago
name: `${pre}vir`,
path: `vir`,
4 years ago
component: () => import("@/pages/achievement/vir"),
meta: { title: "成绩管理" }
}, {
4 years ago
name: `${pre}teach`,
path: `teach`,
4 years ago
component: () => import("@/pages/achievement/teach"),
meta: { title: "成绩管理" }
}, {
4 years ago
name: `${pre}ass`,
path: `ass`,
4 years ago
component: () => import("@/pages/achievement/ass"),
meta: { title: "成绩管理" }
}, {
4 years ago
name: `${pre}show`,
path: `show`,
4 years ago
component: () => import("@/pages/achievement/show"),
meta: { title: "实验报告" }
}
4 years ago
]
};