purchase-let/config/app.js

45 lines
849 B
JavaScript
Raw Normal View History

2024-04-25 18:02:30 +08:00
let BASE_URL
2024-06-24 18:40:03 +08:00
let WSS_URL
2024-04-28 18:08:57 +08:00
import store from "@/store/user.js"
2024-04-25 18:02:30 +08:00
// 环境
2024-06-25 17:07:20 +08:00
let env = "dev"
2024-06-24 14:07:32 +08:00
// let env = "prod"
2024-06-25 17:07:20 +08:00
// let env = "liu";
2024-04-25 18:02:30 +08:00
2024-05-13 18:05:23 +08:00
switch (env) {
2024-06-11 15:12:49 +08:00
case 'dev':
BASE_URL = 'https://test-multi-store.lihaink.cn';
2024-06-24 18:40:03 +08:00
WSS_URL = 'wss://test-multi-store.lihaink.cn/pull'
2024-06-25 13:44:10 +08:00
// WSS_URL = 'ws://192.168.1.22:8787'
2024-06-11 15:12:49 +08:00
break;
2024-06-03 18:25:34 +08:00
case 'liu':
2024-06-25 16:58:51 +08:00
BASE_URL = 'https:ceshi-multi-store.lihaink.cn';
2024-06-24 18:40:03 +08:00
WSS_URL = 'wss://test-multi-store.lihaink.cn/pull'
2024-06-03 18:25:34 +08:00
break;
2024-05-13 18:05:23 +08:00
default:
2024-06-11 15:12:49 +08:00
BASE_URL = 'https://multi-store.lihaink.cn';
2024-06-24 18:40:03 +08:00
WSS_URL = 'wss://test-multi-store.lihaink.cn/pull'
2024-04-28 18:08:57 +08:00
}
2024-04-25 18:02:30 +08:00
let HTTP_REQUEST_URL
let HEADER
2024-04-28 18:08:57 +08:00
2024-04-25 18:02:30 +08:00
let config = {
HTTP_REQUEST_URL: BASE_URL,
2024-06-24 18:40:03 +08:00
WSS_URL: WSS_URL,
2024-04-25 18:02:30 +08:00
HEADER: {
'content-type': 'application/json',
//#ifdef MP
'Form-type': 'routine',
//#endif
//#ifdef APP-PLUS
'Form-type': 'app',
//#endif
'TOKEN': ''
2024-04-28 18:08:57 +08:00
},
2024-05-13 18:05:23 +08:00
ENV: env,
2024-04-25 18:02:30 +08:00
}
export {
config
};