fixing config & hide system in logs

This commit is contained in:
Warunee Tamkoo 2024-07-16 09:52:45 +07:00
parent cab38eceba
commit 3574330438
2 changed files with 11 additions and 11 deletions

View file

@ -20,7 +20,7 @@ const config = ref<any>({
API_REPORT2_URI: "https://bma-ehr.frappet.synology.me/api/v2", API_REPORT2_URI: "https://bma-ehr.frappet.synology.me/api/v2",
API_REPORT_TEMPLATE_URI: API_REPORT_TEMPLATE_URI:
"https://report-server.frappet.synology.me/api/v1/report-template", "https://report-server.frappet.synology.me/api/v1/report-template",
API_LOG: "http://192.168.1.90:20007/api/v1", API_LOG: apiUrlConfig,
}, },
test: { test: {
API_URI: "http://localhost:5010/api/v1", API_URI: "http://localhost:5010/api/v1",

View file

@ -87,11 +87,11 @@ const menuList = ref<{ icon: string; label: string; path: string }[]>([
label: "ระบบดำเนินการทางวินัย", label: "ระบบดำเนินการทางวินัย",
path: "/lists?system=cybersecurity", path: "/lists?system=cybersecurity",
}, },
{ // {
icon: "mdi-briefcase-account", // icon: "mdi-briefcase-account",
label: "ระบบบริการเจ้าของข้อมูลบุคคล", // label: "",
path: "/lists?system=owner", // path: "/lists?system=owner",
}, // },
{ {
icon: "mdi-account-settings-outline", icon: "mdi-account-settings-outline",
label: "ระบบข้อมูลหลัก", label: "ระบบข้อมูลหลัก",
@ -102,11 +102,11 @@ const menuList = ref<{ icon: string; label: string; path: string }[]>([
label: "ระบบ Admin", label: "ระบบ Admin",
path: "/lists?system=admin", path: "/lists?system=admin",
}, },
{ // {
icon: "mdi-shield-key", // icon: "mdi-shield-key",
label: "ระบบ Single Sign-On", // label: " Single Sign-On",
path: "/lists?system=sso", // path: "/lists?system=sso",
}, // },
]); ]);
onMounted(async () => { onMounted(async () => {