From d196d32f7fa7273c4220e02c15435bf964df5acc Mon Sep 17 00:00:00 2001 From: Net <93821485+somnetsak123@users.noreply.github.com> Date: Thu, 11 Jul 2024 10:21:20 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=20=20api=20=20log?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/api/index.ts b/src/api/index.ts index 2667578e..0f25ab56 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -19,6 +19,7 @@ const config = ref({ MEET_URI: "meet.frappet.com", API_REPORT2_URI: "https://bma-ehr.frappet.synology.me/api/v2", API_REPORT_TEMPLATE_URI: "https://report-server.frappet.synology.me/api/v1/report-template", + API_LOG:"http://192.168.1.90:20007/api/v1" }, test: { API_URI: "http://localhost:5010/api/v1", @@ -36,6 +37,7 @@ const config = ref({ MEET_URI: "meet.frappet.com", API_REPORT2_URI: `${window.location.protocol}//${window.location.host}/api/v2`, API_REPORT_TEMPLATE_URI: "https://report-server.frappet.synology.me/api/v1/report-template", + API_LOG:"https://bma-ehr-admin.frappet.synology.me/api/v1/backup" }, }) @@ -47,6 +49,7 @@ const MEET_URI = ref(config.value[env.value].MEET_URI) const API_URI_PROFILE_SERVICE = ref(config.value[env.value].API_URI_PROFILE_SERVICE) const API_REPORT2_URI = ref(config.value[env.value].API_REPORT2_URI) const API_REPORT_TEMPLATE_URI = ref(config.value[env.value].API_REPORT_TEMPLATE_URI) +const API_LOG = ref(config.value[env.value].API_LOG) export default { env: env.value, @@ -59,4 +62,5 @@ export default { MEET_URI: MEET_URI.value, API_REPORT2_URI: API_REPORT2_URI.value, API_REPORT_TEMPLATE_URI: API_REPORT_TEMPLATE_URI.value, + API_LOG:API_LOG.value }