let httpApiThree; let httpApi; // 总域名 let httpApiTwo; // 物流系统域名 let httpApiTest const env = 'dev'; // 开发 // const env = 'prod'; // 生产 // const env = 'prew'; // 预上线 switch (env) { case 'dev': httpApi = 'http://192.168.1.15/adminapi' } // #ifdef H5 // httpApiThree = 'baseUrlTest' //生产 // #endif // if (process.env.NODE_ENV === "development") { // httpApi = "http://192.168.0.222:8324" // // #ifdef MP-WEIXIN // httpApiTwo = "http://cms.com" // httpApiThree = 'http://ceshi-oa.lihaink.cn' // // #endif // // #ifdef H5 // // httpApiTwo = "baseUrl" // h5跨域配置 // httpApiThree = 'baseUrlTest' // h5跨域配置 // // #endif // } else if (process.env.NODE_ENV === 'production') { // httpApi = 'https://shop.lihaink.cn' // 生产 // httpApiTwo = 'https://nk.lihaink.cn' // 生产 // httpApiThree = 'http://ceshi-oa.lihaink.cn' //生产 // } module.exports = { // 请求域名 格式: https://您的域名 HTTP_REQUEST_URL: httpApi, // #ifdef H5 //H5接口是浏览器地址 // HTTP_REQUEST_URL: httpApi || window.location.protocol + "//" + window.location.host, // HTTP_REQUEST_URL_THREE: httpApiThree || window.location.protocol + "//" + window.location.host, // #endif HEADER: { 'content-type': 'application/json', //#ifdef MP 'Form-type': 'routine', //#endif //#ifdef APP-PLUS 'Form-type': 'app', //#endif }, // 回话密钥名称 请勿修改此配置 // TOKENNAME: 'X-Token', TOKENNAME: 'token', // 缓存时间 0 永久 EXPIRE: 0, };