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.
|
|
|
import BasicLayout from "@/layouts/home";
|
|
|
|
|
|
|
|
const meta = {};
|
|
|
|
|
|
|
|
const pre = "assessment-";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
path: `/assessment`,
|
|
|
|
component: BasicLayout,
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
path: `/assessment`,
|
|
|
|
component: () => import("@/pages/assessment/list"),
|
|
|
|
meta: { title: "考核管理" }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: `${pre}add`,
|
|
|
|
path: `add`,
|
|
|
|
component: () => import("@/pages/assessment/add/index.vue"),
|
|
|
|
meta: { title: "添加考核" }
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|