app.js 1006 B

12345678910111213141516171819202122232425262728293031323334353637
  1. module.exports = {
  2. // 小程序配置
  3. // #ifdef MP || APP-PLUS
  4. // 请求域名 格式: https://您的域名
  5. // HTTP_REQUEST_URL: `https://www.gzzhsckj.com`,
  6. HTTP_REQUEST_URL: `https://wine.gzzzyd.com`,
  7. // HTTP_REQUEST_URL: `v4.crmeb.net`,
  8. // #endif
  9. // H5配置
  10. // #ifdef H5
  11. //H5接口是浏览器地址,非单独部署不用修改
  12. HTTP_REQUEST_URL: window.location.protocol + "//" + "v4.crmeb.net",
  13. // #endif
  14. // 以下配置在不做二开的前提下,不需要做任何的修改
  15. HEADER: {
  16. 'Authorization': 'Basic YXBwOmFwcF9zZWNyZXQ=',
  17. 'Tenant-Id': '000000',
  18. 'content-type': 'application/json',
  19. //#ifdef H5
  20. 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
  21. //#endif
  22. //#ifdef MP
  23. 'Form-type': 'routine',
  24. //#endif
  25. //#ifdef APP-VUE
  26. 'Form-type': 'app',
  27. //#endif
  28. },
  29. // 回话密钥名称 请勿修改此配置
  30. TOKENNAME: 'Blade-Auth',
  31. // 缓存时间 0 永久
  32. EXPIRE: 0,
  33. //分页最多显示条数
  34. LIMIT: 10
  35. }