ประเมินเชี่ยวชาญ

This commit is contained in:
STW_TTTY\stwtt 2024-06-27 11:15:45 +07:00
parent 19d0763afc
commit 11be473f54
6 changed files with 1554 additions and 187 deletions

View file

@ -3,6 +3,7 @@ const evaluateMain = () =>
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",
@ -41,4 +42,13 @@ export default [
Key: [7],
},
},
{
path: "/evaluate/detail/expertise/:id",
name: "evaluate-expert-detail",
component: expertPageDetail,
meta: {
Auth: true,
Key: [7],
},
},
];