官网 管理后台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.js 691B

123456789101112131415161718
  1. window.isTest = true; //测试环境true 正式环境false
  2. window._config = window.isTest
  3. ? {
  4. // 测试环境
  5. baseUrl: "//xhwebapitest.xhkjedu.com/",
  6. showImageUrl: "//xhwebstatictest.xhkjedu.com/",
  7. axiosApiTimeout: 20, // 接口超时时间 单位秒
  8. axiosFileTimeout: 30, // 上传文件超时时间 单位秒
  9. versionname: "测试 v3.8.6",
  10. }
  11. : {
  12. // 正式环境
  13. baseUrl: "//xhwebapi.xhkjedu.com/",
  14. showImageUrl: "//xhwebstatic.xhkjedu.com/",
  15. axiosApiTimeout: 20, // 接口超时时间 单位秒
  16. axiosFileTimeout: 30, // 上传文件超时时间 单位秒
  17. versionname: "测试 v3.8.6",
  18. };