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