|
12345678910111213141516171819202122232425262728293031323334 |
- window.isTest = true;
- window._config = window.isTest
- ? {
-
- webUrl: "https://xhbitest.xhkjedu.com/",
- baseUrl: "https://xhbiapitest.xhkjedu.com/",
- baseImageUrl: "https://xhbifiletest.xhkjedu.com/",
- showImageUrl: "https://xhbistatictest.xhkjedu.com/",
- useMicroservice: true,
- 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/",
- useMicroservice: true,
- axiosApiTimeout: 20,
- axiosFileTimeout: 30,
-
- developer: "河南星火燎原软件科技有限公司",
-
- contactUs: "https://www.xhkjedu.com/",
- versionname: "正式 v1.0.0",
- secret: true
- };
|