no message
This commit is contained in:
parent
a677f7869c
commit
74b8362523
4 changed files with 30 additions and 5 deletions
|
|
@ -123,7 +123,10 @@ export default {
|
||||||
repatriationMainReport: () => `${placement}/repatriation/report`,
|
repatriationMainReport: () => `${placement}/repatriation/report`,
|
||||||
// ขอย้าย
|
// ขอย้าย
|
||||||
placemenRelocation,
|
placemenRelocation,
|
||||||
|
relocationMain: () => `${placement}/relocation`,
|
||||||
|
relocationDetail: (id:string) => `${placement}/relocation/${id}`,
|
||||||
|
relocationMainDelete: (id:string) => `${placement}/relocation/${id}`,
|
||||||
|
relocationMainReport: () => `${placement}/relocation/report`,
|
||||||
// อื่นๆ
|
// อื่นๆ
|
||||||
placemenOther,
|
placemenOther,
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,8 @@ const config = ref<any>({
|
||||||
"https://s3cluster.frappet.com/bma-ehr-fpt/organization/strueture/tree_20230712_172702.json",
|
"https://s3cluster.frappet.com/bma-ehr-fpt/organization/strueture/tree_20230712_172702.json",
|
||||||
MEET_URI: "meet.frappet.com",
|
MEET_URI: "meet.frappet.com",
|
||||||
API_RETIREMENT_URI: "https://bma-ehr.frappet.synology.me/api/v1",
|
API_RETIREMENT_URI: "https://bma-ehr.frappet.synology.me/api/v1",
|
||||||
// API_PROBATION_URI: "https://ehr.joolsoft.com/v1",
|
API_PROBATION_URI: "https://ehr.joolsoft.com/v1",
|
||||||
API_PROBATION_URI: "http://192.168.1.151:7776/v1",
|
// API_PROBATION_URI: "http://192.168.1.151:7776/v1",
|
||||||
},
|
},
|
||||||
test: {
|
test: {
|
||||||
API_URI: "http://localhost:5010/api/v1",
|
API_URI: "http://localhost:5010/api/v1",
|
||||||
|
|
|
||||||
|
|
@ -2,8 +2,8 @@ interface officerType {
|
||||||
no:number,
|
no:number,
|
||||||
id: string,
|
id: string,
|
||||||
prefix: string,
|
prefix: string,
|
||||||
firstName: string,
|
firstname: string,
|
||||||
lastName: string,
|
lastname: string,
|
||||||
position: string,
|
position: string,
|
||||||
posNo: string,
|
posNo: string,
|
||||||
positionLevel: string,
|
positionLevel: string,
|
||||||
|
|
|
||||||
|
|
@ -37,6 +37,8 @@ const RepatriationOrderAdd = () =>
|
||||||
const helpgovernmentbyId = () => import("@/modules/05_placement/components/helpgovernment/governmentDetail.vue")
|
const helpgovernmentbyId = () => import("@/modules/05_placement/components/helpgovernment/governmentDetail.vue")
|
||||||
const repatriate = () => import("@/modules/05_placement/components/Repatriate/RepatriateMain.vue")
|
const repatriate = () => import("@/modules/05_placement/components/Repatriate/RepatriateMain.vue")
|
||||||
const repatriatebyId = () => import("@/modules/05_placement/components/Repatriate/RepatriatebyId.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 = () =>
|
const receiveMain = () =>
|
||||||
import("@/modules/05_placement/components/Receive/receiveMain.vue");
|
import("@/modules/05_placement/components/Receive/receiveMain.vue");
|
||||||
|
|
@ -258,4 +260,24 @@ export default [
|
||||||
Role: "placement",
|
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",
|
||||||
|
},
|
||||||
|
},
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue