ทดลอง งาน ค้างไว้

This commit is contained in:
STW_TTTY\stwtt 2024-06-06 10:54:03 +07:00
parent dbe620c549
commit 38d3c6d6ee
20 changed files with 7283 additions and 91 deletions

View file

@ -12,6 +12,12 @@ const probationEvaluateChairman = () => import('@/modules/11_probation/component
const probationEvaluateResult = () => import('@/modules/11_probation/component/06_EvaluateResult.vue')
const probationEvaluateReport = () => import('@/modules/11_probation/component/07_EvaluateReport.vue')
const probationSurveyComment = () => import('@/modules/11_probation/component/08_SurveyComment.vue')
const probationAddresult = () => import('@/modules/11_probation/component/addPage/01_addresult.vue')
const probationAddevaluacommander = () => import('@/modules/11_probation/component/addPage/02_addevaluacommander.vue')
const probationAddevalua = () => import('@/modules/11_probation/component/addPage/03_addevalua.vue')
const probationAddevaluascore = () => import('@/modules/11_probation/component/addPage/04_addevaluascore.vue')
export default [
{
path: "/probation",
@ -113,5 +119,42 @@ export default [
Key: [11],
},
},
/////////////////////////////////////////////////
{
path: "/probation/detail/addresult/:profileId/:id",
name: "probationAddresult",
component: probationAddresult,
meta: {
Auth: true,
Key: [11],
},
},
{
path: "/probation/detail/addevaluacommander/:profileId/:id",
name: "probationAddevaluacommander",
component: probationAddevaluacommander,
meta: {
Auth: true,
Key: [11],
},
},
{
path: "/probation/detail/addevalua/:profileId/:id",
name: "probationAddevalua",
component: probationAddevalua,
meta: {
Auth: true,
Key: [11],
},
},
{
path: "/probation/detail/addevaluascore/:profileId/:id",
name: "probationAddevaluascore",
component: probationAddevaluascore,
meta: {
Auth: true,
Key: [11],
},
},
];