- ปรับเมนูเอาทดลองงานมาเป็นเมนูหลัก เพิ่มออกคำสั่งย้ายสับเปลี่ยนตำแหน่ง

- เพิ่มย้ายสับเปลี่ยนตำแหน่ง
This commit is contained in:
Warunee Tamkoo 2024-06-10 11:57:27 +07:00
parent 5f5d57b7dc
commit c89a4d2dee
8 changed files with 2510 additions and 22 deletions

View file

@ -39,14 +39,25 @@ const FormEvaluateScoreAdd = () =>
import(
"@/modules/05_placement/components/probation/FormEvaluation/FormEvaluateScoreAdd.vue"
);
const FormSaveResultAddCommander = () => import("./components/probation/FormEvaluation/FormSaveResultAddCommander.vue")
const FormSaveResultAddCommander = () =>
import(
"./components/probation/FormEvaluation/FormSaveResultAddCommander.vue"
);
const helpgovernment = () => import("@/modules/05_placement/components/helpgovernment/mainHelp.vue")
const helpgovernmentbyId = () => import("@/modules/05_placement/components/helpgovernment/governmentDetail.vue")
const repatriate = () => import("@/modules/05_placement/components/Repatriate/RepatriateMain.vue")
const repatriatebyId = () => import("@/modules/05_placement/components/Repatriate/RepatriatebyId.vue")
const relocation = () => import("@/modules/05_placement/components/Relocation/RelocationMain.vue")
const relocationbyId = () => import("@/modules/05_placement/components/Relocation/RelocationbyId.vue")
const helpgovernment = () =>
import("@/modules/05_placement/components/helpgovernment/mainHelp.vue");
const helpgovernmentbyId = () =>
import(
"@/modules/05_placement/components/helpgovernment/governmentDetail.vue"
);
const repatriate = () =>
import("@/modules/05_placement/components/Repatriate/RepatriateMain.vue");
const repatriatebyId = () =>
import("@/modules/05_placement/components/Repatriate/RepatriatebyId.vue");
const relocation = () =>
import("@/modules/05_placement/components/Relocation/RelocationMain.vue");
const relocationbyId = () =>
import("@/modules/05_placement/components/Relocation/RelocationbyId.vue");
//รับโอน
const receiveMain = () =>
import("@/modules/05_placement/components/Receive/receiveMain.vue");
@ -59,15 +70,27 @@ const ReceiveAdd = () =>
import("@/modules/05_placement/components/Receive/FormAdd.vue");
//แต่งตั้ง-เลื่อน
const AppointmentMain = () => import("@/modules/05_placement/components/AppointMent/Main.vue");
const AppointmentDetail = () => import("@/modules/05_placement/components/AppointMent/Detail.vue");
const AppointmentMain = () =>
import("@/modules/05_placement/components/AppointMent/Main.vue");
const AppointmentDetail = () =>
import("@/modules/05_placement/components/AppointMent/Detail.vue");
//แต่งตั้งลูกจ้างประจำ
const AppointEmployeeMain = () => import("@/modules/05_placement/components/AppointEmployee/Main.vue");
const AppointEmployeeDetail = () => import("@/modules/05_placement/components/AppointEmployee/Detail.vue");
const AppointEmployeeMain = () =>
import("@/modules/05_placement/components/AppointEmployee/Main.vue");
const AppointEmployeeDetail = () =>
import("@/modules/05_placement/components/AppointEmployee/Detail.vue");
//อื่นๆ
const OtherMain = () => import("@/modules/05_placement/components/Other/Main.vue")
const OthertDetail = () => import("@/modules/05_placement/components/Other/Detail.vue");
const OtherMain = () =>
import("@/modules/05_placement/components/Other/Main.vue");
const OthertDetail = () =>
import("@/modules/05_placement/components/Other/Detail.vue");
const ChangePositionMain = () =>
import("@/modules/05_placement/components/ChangePosition/Main.vue");
const ChangePersonalList = () =>
import("@/modules/05_placement/components/ChangePosition/PersonalList.vue");
const ChangePersonalDetail = () =>
import("@/modules/05_placement/components/ChangePosition/PersonalDetail.vue");
export default [
{
@ -336,16 +359,17 @@ export default [
component: OtherMain,
meta: {
Auth: true,
Key: [6.10],
Key: [6.1],
Role: "placement",
},
}, {
},
{
path: "/relocation",
name: "relocation",
component: relocation,
meta: {
Auth: true,
Key: [6.10],
Key: [6.1],
Role: "placement",
},
},
@ -358,7 +382,8 @@ export default [
Key: [6.9],
Role: "placement",
},
}, {
},
{
path: "/relocation/detail/:id",
name: "relocationId",
component: relocationbyId,
@ -368,4 +393,34 @@ export default [
Role: "placement",
},
},
{
path: "/change-positions",
name: "changePositions",
component: ChangePositionMain,
meta: {
Auth: true,
Key: [6.4],
Role: "placement",
},
},
{
path: "/change-positions/:id",
name: "changePersonalList",
component: ChangePersonalList,
meta: {
Auth: true,
Key: [6.4],
Role: "placement",
},
},
{
path: "/change-positions/personal/:id",
name: "changePersonalId",
component: ChangePersonalDetail,
meta: {
Auth: true,
Key: [6.4],
Role: "placement",
},
},
];