purchase-let/config/app.js

34 lines
586 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-06 14:54:47 +08:00
// let env = "dev"
2024-05-06 10:11:25 +08:00
// let env = "test"
2024-05-06 14:54:47 +08:00
let env = "prod"
2024-04-25 18:02:30 +08:00
2024-04-28 18:08:57 +08:00
switch(env){
2024-05-06 10:11:25 +08:00
case 'prod': BASE_URL = 'https://erp.lihaink.cn';break;
case 'test': BASE_URL = 'https://ceshi-erp.lihaink.cn';break;
2024-05-08 14:50:27 +08:00
default: BASE_URL = 'http://192.168.1.15: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
},
ENV: env,
2024-04-25 18:02:30 +08:00
}
export {
config
};