purchase-let/config/app.js

40 lines
617 B
JavaScript
Raw Normal View History

2024-04-25 18:02:30 +08:00
let BASE_URL
2024-04-28 18:08:57 +08:00
import store from "@/store/user.js"
2024-04-25 18:02:30 +08:00
// 环境
2024-05-22 11:53:09 +08:00
let env = "dev"
2024-05-06 10:11:25 +08:00
// let env = "test"
2024-05-22 11:53:09 +08:00
// let env = "prod"
2024-05-13 18:05:23 +08:00
// let env = "local"
2024-04-25 18:02:30 +08:00
2024-05-13 18:05:23 +08:00
switch (env) {
case 'prod':
BASE_URL = 'https://erp.lihaink.cn';
break;
case 'test':
BASE_URL = 'https://ceshi-erp.lihaink.cn';
break;
default:
2024-05-22 11:53:09 +08:00
BASE_URL = 'http://192.168.1.22:8546';
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,
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
};