2024-06-03 18:25:34 +08:00

44 lines
712 B
JavaScript

let BASE_URL
import store from "@/store/user.js"
// 环境
// let env = "dev"
// let env = "test"
// let env = "prod"
// let env = "local"
let env = "liu";
switch (env) {
case 'prod':
BASE_URL = 'https://erp.lihaink.cn';
break;
case 'test':
BASE_URL = 'https://ceshi-erp.lihaink.cn';
break;
case 'liu':
BASE_URL = 'http://192.168.1.201:8545';
break;
default:
BASE_URL = 'https://test-multi-store.lihaink.cn';
}
let HTTP_REQUEST_URL
let HEADER
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': ''
},
ENV: env,
}
export {
config
};