no message

This commit is contained in:
setthawutttty 2023-08-15 13:58:07 +07:00
parent a677f7869c
commit 74b8362523
4 changed files with 30 additions and 5 deletions

View file

@ -2,8 +2,8 @@ interface officerType {
no:number,
id: string,
prefix: string,
firstName: string,
lastName: string,
firstname: string,
lastname: string,
position: string,
posNo: string,
positionLevel: string,

View file

@ -37,6 +37,8 @@ const RepatriationOrderAdd = () =>
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");
@ -258,4 +260,24 @@ export default [
Role: "placement",
},
},
{
path: "/relocation",
name: "relocation",
component: relocation,
meta: {
Auth: true,
Key: [6.9],
Role: "placement",
},
},
{
path: "/relocation/detail/:id",
name: "relocationId",
component: relocationbyId,
meta: {
Auth: true,
Key: [6.9],
Role: "placement",
},
},
];