12345678910111213141516171819202122232425262728293031323334 |
- window.isTest = true;
- 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.0",
- 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.0",
- secret: true
- };
|