แก้ไขประเมินบุคคล
This commit is contained in:
parent
2399c9dcf0
commit
3487ae71bb
6 changed files with 61 additions and 19 deletions
|
|
@ -24,7 +24,9 @@ export default {
|
|||
evaluationFileListbyId: (volume: string, id: string) =>
|
||||
`${evaluationFile}/${volume}/${id}`,
|
||||
evaluationApproveDoc1: (id: string) => `${evaluation}/doc1/approve/${id}`,
|
||||
|
||||
evaluationNext5To6: (id: string) => `${evaluation}/announce/${id}`,
|
||||
evaluationNextFinish: (id: string) => `${evaluation}/wait-check-doc-v2/${id}`,
|
||||
|
||||
evaluationHistory: (id: string) => `${evaluation}/step-history/${id}`,
|
||||
|
||||
evaluationDateAnnounce: (id: string) => `${evaluation}/check-date/${id}`,
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@ const config = ref<any>({
|
|||
API_PROBATION_URI: "https://bma-ehr.frappet.synology.me/api/v1/probation",
|
||||
// API_PROBATION_URI: "http://192.168.1.151:7776/v1",
|
||||
API_REPORT2_URI: "https://bma-ehr.frappet.synology.me/api/v2",
|
||||
LINK_EVALUATE_PUBLISH: "https://bma-ehr-publish.frappet.synology.me",
|
||||
},
|
||||
test: {
|
||||
API_URI: "http://localhost:5010/api/v1",
|
||||
|
|
@ -52,6 +53,7 @@ const config = ref<any>({
|
|||
API_RETIREMENT_URI: `${window.location.protocol}//${window.location.host}/api/v1`,
|
||||
API_PROBATION_URI: `${window.location.protocol}//${window.location.host}/api/v1/probation`,
|
||||
API_REPORT2_URI: `${window.location.protocol}//${window.location.host}/api/v2`,
|
||||
LINK_EVALUATE_PUBLISH: `${window.location.protocol}//${window.location.host}`,
|
||||
},
|
||||
});
|
||||
|
||||
|
|
@ -81,6 +83,7 @@ const API_PROBATION_URI = ref<string>(
|
|||
config.value[env.value].API_PROBATION_URI
|
||||
);
|
||||
const API_REPORT2_URI = ref<string>(config.value[env.value].API_REPORT2_URI);
|
||||
const LINK_EVALUATE_PUBLISH = ref<string>(config.value[env.value].LINK_EVALUATE_PUBLISH);
|
||||
|
||||
export default {
|
||||
env: env.value,
|
||||
|
|
@ -97,4 +100,5 @@ export default {
|
|||
API_RETIREMENT_URI: API_RETIREMENT_URI.value,
|
||||
API_PROBATION_URI: API_PROBATION_URI.value,
|
||||
API_REPORT2_URI: API_REPORT2_URI.value,
|
||||
LINK_EVALUATE_PUBLISH: LINK_EVALUATE_PUBLISH.value,
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue