const evaluateMain = () => import("@/modules/06_evaluate/views/EvaluateMain.vue"); const evaluateStep = () => import("@/modules/06_evaluate/components/EvaluateStepMain.vue"); const expertPage = () => import("@/modules/06_evaluate/components/ExpertPage.vue"); const expertPageDetail = () => import("@/modules/06_evaluate/components/ExpertPageDetail.vue"); export default [ { path: "/evaluate", name: "evaluate", component: evaluateMain, meta: { Auth: true, Key: [7], }, }, { path: "/evaluate/add/:type", name: "evaluate-add", component: evaluateStep, meta: { Auth: true, Key: [7], }, }, { path: "/evaluate/detail/:type/:id", name: "evaluate-detail", component: evaluateStep, meta: { Auth: true, Key: [7], }, }, { path: "/evaluate/expert", name: "evaluate-expert", component: expertPage, meta: { Auth: true, Key: [7], }, }, { path: "/evaluate/detail/expertise/:id", name: "evaluate-expert-detail", component: expertPageDetail, meta: { Auth: true, Key: [7], }, }, ];