api แต่งตั้ง - เลื่อน ,อื่น

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2023-08-15 17:58:41 +07:00
parent b4ac343685
commit f7e686fbec
10 changed files with 3770 additions and 4 deletions

View file

@ -57,6 +57,12 @@ const FormSaveResultAdd = () =>
import(
"@/modules/05_placement/components/probation/FormEvaluation/FormSaveResultAdd.vue"
);
//แต่งตั้ง-เลื่อน
const AppointmentMain = () => import("@/modules/05_placement/components/AppointMent/Main.vue");
const AppointmentDetail = () => import("@/modules/05_placement/components/AppointMent/Detail.vue");
//อื่นๆ
const OtherMain = () => import("@/modules/05_placement/components/Other/Main.vue")
const OthertDetail = () => import("@/modules/05_placement/components/Other/Detail.vue");
export default [
{
@ -269,4 +275,44 @@ export default [
Role: "placement",
},
},
{
path: "appoint-promote",
name: "appoint-promote",
component: AppointmentMain,
meta: {
Auth: true,
Key: [6.8],
Role: "placement",
},
},
{
path: "appoint-promote/detail/:id",
name: "appoint-promote-detail",
component: AppointmentDetail,
meta: {
Auth: true,
Key: [6.8],
Role: "placement",
},
},
{
path: "other",
name: "other",
component: OtherMain,
meta: {
Auth: true,
Key: [6.9],
Role: "placement",
},
},
{
path: "other/detail/:id",
name: "other-detail",
component: OthertDetail,
meta: {
Auth: true,
Key: [6.9],
Role: "placement",
},
},
];