2020-10-26 11:31:32 +08:00
|
|
|
export function getBaseUrl() {
|
|
|
|
let BASE_API;
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
2020-11-18 09:52:50 +08:00
|
|
|
// BASE_API = 'https://joylink.club/jlcloud';
|
2020-12-04 17:10:03 +08:00
|
|
|
BASE_API = 'https://test.joylink.club/jlcloud';
|
2020-10-29 17:34:56 +08:00
|
|
|
// BASE_API = 'http://192.168.8.107:9000'; // 袁琪
|
2020-11-13 09:36:14 +08:00
|
|
|
// BASE_API = 'http://192.168.8.129:9000'; // 旭强
|
2020-12-04 17:10:03 +08:00
|
|
|
// BASE_API = 'http://192.168.8.119:9000'; // 张赛
|
2020-12-02 14:22:26 +08:00
|
|
|
// BASE_API = 'http://192.168.8.110:9000'; // 杜康
|
2020-10-26 11:31:32 +08:00
|
|
|
// BASE_API = 'http://b29z135112.zicp.vip';
|
|
|
|
// BASE_API = 'http://2925963m2a.zicp.vip'; // 杜康
|
|
|
|
// BASE_API = 'http://2i38984j47.qicp.vip'; // 张赛
|
|
|
|
} else {
|
|
|
|
BASE_API = process.env.VUE_APP_BASE_API;
|
|
|
|
}
|
|
|
|
return BASE_API;
|
|
|
|
}
|