From cca7adfe0b76ed7c2fbdbc9978533de147695184 Mon Sep 17 00:00:00 2001 From: Ben Lin <maobin001@msn.com> Date: 星期六, 08 六月 2024 23:02:07 +0800 Subject: [PATCH] 工单管理更新 --- types/config.d.ts | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/types/config.d.ts b/types/config.d.ts index fa08c58..59f8854 100644 --- a/types/config.d.ts +++ b/types/config.d.ts @@ -141,6 +141,7 @@ title: string; // Service interface url apiUrl: string; + sysApiUrl: string; taskApiUrl: string; // Upload url uploadUrl?: string; @@ -150,12 +151,14 @@ shortName: string; mapKey: string; downloadUrl: string; + useOrg: boolean; } export interface GlobEnvConfig { // Site title VITE_GLOB_APP_TITLE: string; // Service interface url VITE_GLOB_API_URL: string; + VITE_GLOB_SYS_API_URL: string; VITE_GLOB_TSK_API_URL: string; // Service interface url prefix VITE_GLOB_API_URL_PREFIX?: string; @@ -163,4 +166,5 @@ VITE_GLOB_UPLOAD_URL?: string; VITE_GLOB_MAP_KEY: string; VITE_GLOB_DOWNLOAD_URL: string; + VITE_USE_ORG: boolean; } -- Gitblit v1.9.3