接口配置

This commit is contained in:
jia 2023-09-25 15:05:07 +08:00
parent 16ca15803e
commit ea49678acb
2 changed files with 6 additions and 3 deletions

View File

@ -17,16 +17,19 @@ switch (env) {
httpApi = 'https://shop.lihaink.cn' // 生产
httpApiTwo = 'https://nk.lihaink.cn'
httpApiThree = 'http://ceshi-oa.lihaink.cn'
httpApiFour= 'https://worker-task.lihaink.cn'
break;
case 'prew':
httpApi = 'https://test.shop.lihaink.cn' //预发布环境
httpApiTwo = "https://nk.lihaink.cn"
httpApiThree = 'http://ceshi-oa.lihaink.cn'
httpApiFour= 'http://ceshi-oa.lihaink.cn'
break;
default:
httpApi = "https://crmeb-test.shop.lihaink.cn" // 测试
httpApiTwo = "https://nk.lihaink.cn"
httpApiThree = 'http://ceshi-oa.lihaink.cn'
httpApiFour= 'https://ceshi-worker-task.lihaink.cn'
}
@ -73,6 +76,7 @@ module.exports = {
HTTP_REQUEST_URL: httpApi,
HTTP_REQUEST_URL_TWO: httpApiTwo,
HTTP_REQUEST_URL_THREE: httpApiThree,
HTTP_REQUEST_URL_FOUR: httpApiFour,
VUE_APP_WS_URL: `${wsApi}?type=user`,
// #endif

View File

@ -8,7 +8,7 @@
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import {
HTTP_REQUEST_URL,
HTTP_REQUEST_URL_FOUR,
HEADER,
TOKENNAME
} from '@/config/app';
@ -26,8 +26,7 @@ function baseRequest(url, method, data, {
noAuth = false,
noVerify = false
}) {
let Url = 'https://ceshi-worker-task.lihaink.cn',
let Url = HTTP_REQUEST_URL_FOUR,
header = HEADER;