// 公用域名ip 默认使用地址 --- 动态修改请求地址在 public/.config.json const devIp = 'http://192.168.3.78:10066'; //本地开发接口ip const testIp = 'http://testapi.xklr.net:8601'; //测试ip let prodIp = 'http://apiv3.xklr.net'; //正式ip、选择线下图片 let img_prod_host = 'http://img.xklr.net/'; //正式线上图片 module.exports = { // 图片地址 prodIp, img_prod_host, devIp, testIp, img_prod_host, img_local_host: (process.env.NODE_ENV === 'production' ? prodIp : process.env.NODE_ENV === 'test' ? testIp : devIp) + '/file/', // 请求 地址 baseURL: (process.env.NODE_ENV === 'production' ? prodIp : process.env.NODE_ENV === 'test' ? testIp : devIp) + '/api/h5', appConfig: { "jj_service_url": "http://118.31.70.1:8601", "OrgCode": "jtapi.xklr.net:8601", "type": "none", "accessType": 1, "district": "111111" } }