From 2fda34643bc22e25f6c569415da5f955c81536bf Mon Sep 17 00:00:00 2001 From: Houjie <714924425@qq.com> Date: 星期二, 03 六月 2025 09:37:08 +0800 Subject: [PATCH] 设备详情通过ID过滤/设备详情增加上传附件 --- common/service/config.service.js | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/common/service/config.service.js b/common/service/config.service.js index b190b3b..79aea71 100644 --- a/common/service/config.service.js +++ b/common/service/config.service.js @@ -1,17 +1,16 @@ -let BASE_URL = 'https://192.168.1.118:9988/jeecg-boot' - - +let BASE_URL = '/jeecg-boot' if (process.env.NODE_ENV == 'development') { - BASE_URL = 'https://192.168.1.118:9988/jeecg-boot' // 寮�鍙戠幆澧� + BASE_URL = '/jeecg-boot' // 寮�鍙戠幆澧� } else { - BASE_URL = 'https://192.168.1.118:9988/jeecg-boot' // 鐢熶骇鐜 + BASE_URL = '/jeecg-boot' // 鐢熶骇鐜 } -let staticDomainURL = BASE_URL+ '/sys/common/static'; - +let staticDomainURL ='/sys/common/static'; +let staticURL ='https://192.168.100.105:9999/jeecg-boot/sys/common/static'; const configService = { apiUrl: BASE_URL, - staticDomainURL: staticDomainURL + staticDomainURL: staticDomainURL, + staticURL:staticURL }; export default configService -- Gitblit v1.9.3