probation add api

This commit is contained in:
Warunee Tamkoo 2023-08-04 10:40:04 +07:00
parent 7de96b1286
commit fb3614d88f
4 changed files with 32 additions and 3 deletions

View file

@ -26,6 +26,7 @@ const config = ref<any>({
"https://s3cluster.frappet.com/bma-ehr-fpt/organization/strueture/tree_20230712_172702.json",
MEET_URI: "meet.frappet.com",
API_RETIREMENT_URI: "https://bma-ehr.frappet.synology.me/api/v1",
API_PROBATION_URI: "http://192.168.1.151:7776/v1",
},
test: {
API_URI: "http://localhost:5010/api/v1",
@ -70,6 +71,7 @@ const API_RETIREMENT_URI = ref<string>(
config.value[env.value].API_RETIREMENT_URI
);
const API_URI_ORG_TREE = ref<string>(config.value[env.value].API_URI_ORG_TREE);
const API_PROBATION_URI = ref<string>(config.value[env.value].API_PROBATION_URI);
export default {
env: env.value,
@ -84,4 +86,5 @@ export default {
API_URI_ORG_TREE: API_URI_ORG_TREE.value,
MEET_URI: MEET_URI.value,
API_RETIREMENT_URI:API_RETIREMENT_URI.value,
API_PROBATION_URI: API_PROBATION_URI.value
};