1234567891011121314151617181920212223242526272829303132 |
- window.isTest = true; //测试环境true 正式环境false
- window._config = window.isTest
- ? {
- // 测试环境
- webUrl: "https://xhbitest.xhkjedu.com/",
- baseUrl: "http://49.4.26.249:8331/",
- baseImageUrl: "https://xhbifiletest.xhkjedu.com/",
- showImageUrl: "https://xhbistatictest.xhkjedu.com/",
- axiosApiTimeout: 60, // 接口超时时间 单位秒
- axiosFileTimeout: 120, // 上传文件超时时间 单位秒
- // 开发者
- developer: "河南星火燎原软件科技有限公司",
- // 联系我们
- contactUs: "https://www.xhkjedu.com/",
- versionname: "测试 v1.0.0",
- secret: false
- }
- : {
- // 正式环境
- webUrl: "https://xhbi.xhkjedu.com/",
- baseUrl: "https://xhbiapi.xhkjedu.com/",
- baseImageUrl: "https://xhbifile.xhkjedu.com/",
- showImageUrl: "https://xhbistatic.xhkjedu.com/",
- axiosApiTimeout: 20, // 接口超时时间 单位秒
- axiosFileTimeout: 30, // 上传文件超时时间 单位秒
- // 开发者
- developer: "河南星火燎原软件科技有限公司",
- // 联系我们
- contactUs: "https://www.xhkjedu.com/",
- versionname: "正式 v1.0.0",
- secret: true
- };
|