fix:getReport

This commit is contained in:
DESKTOP-1R2VSQH\Lenovo ThinkPad E490 2026-02-09 16:34:20 +07:00
parent 4b40d051e0
commit e6cc3142c5
3 changed files with 19 additions and 16 deletions

View file

@ -17,7 +17,7 @@ const config = ref<any>({
MEET_URI: "meet.frappet.com",
LINK_EVALUATE_PUBLISH: "https://bma-ehr-publish.frappet.synology.me",
API_REPORT_TEMPLATE_URI:
"https://report-server.frappet.synology.me/api/v1/report-template",
"https://hrmsbkk.case-collection.com/api/v1/report-template",
},
test: {
API_URI: "http://localhost:5010/api/v1",
@ -36,10 +36,10 @@ const API_URI = ref<string>(config.value[env.value].API_URI);
const API_URL_SUPPORT = ref<string>(config.value[env.value].API_URL_SUPPORT);
const MEET_URI = ref<string>(config.value[env.value].MEET_URI);
const LINK_EVALUATE_PUBLISH = ref<string>(
config.value[env.value].LINK_EVALUATE_PUBLISH
config.value[env.value].LINK_EVALUATE_PUBLISH,
);
const API_REPORT_TEMPLATE_URI = ref<string>(
config.value[env.value].API_REPORT_TEMPLATE_URI
config.value[env.value].API_REPORT_TEMPLATE_URI,
);
export default {