12345678910111213141516171819202122232425262728293031323334 |
- window.isTest = true; //测试环境true 正式环境false
- window._config = window.isTest
- ? {
- // 测试环境
- baseUrl: "https://mcapitest.xhkjedu.com/",
- baseImageUrl: "https://mcapitest.xhkjedu.com/",
- showImageUrl: "https://mcapitest.xhkjedu.com/",
- downLoadUrl: "https://mcapitest.xhkjedu.com/",
- wsUrl: "wss://mcwstest.xhkjedu.com/ws",
- axiosApiTimeout: 60, // 接口超时时间 单位秒
- axiosFileTimeout: 120, // 上传文件超时时间 单位秒
- // 开发者
- developer: "河南星火燎原软件科技有限公司",
- // 联系我们
- contactUs: "https://www.xhkjedu.com/",
- versionname: "测试 v1.0.1",
- secret: false
- }
- : {
- // 正式环境
- baseUrl: "https://mcapi.xhkjedu.com/",
- baseImageUrl: "https://mcapi.xhkjedu.com/",
- showImageUrl: "https://mcapi.xhkjedu.com/",
- downLoadUrl: "https://mcapitest.xhkjedu.com/",
- wsUrl: "wss://mcws.xhkjedu.com/ws",
- axiosApiTimeout: 20, // 接口超时时间 单位秒
- axiosFileTimeout: 30, // 上传文件超时时间 单位秒
- // 开发者
- developer: "河南星火燎原软件科技有限公司",
- // 联系我们
- contactUs: "https://www.xhkjedu.com/",
- versionname: "正式 v1.0.1",
- secret: true
- };
|