app.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. module.exports = {
  11. // 小程序配置
  12. // #ifdef MP || APP-PLUS
  13. // 请求域名 格式: https://您的域名
  14. HTTP_REQUEST_URL: `https:// mall.tzyqkj.com`,
  15. // 长连接 格式:wss://您的域名
  16. VUE_APP_WS_URL: `wss:// mall.tzyqkj.com/ws`,
  17. // #endif
  18. // H5配置
  19. // #ifdef H5
  20. //H5接口是浏览器地址,非单独部署不用修改
  21. HTTP_REQUEST_URL: window.location.protocol + "//" + window.location.host,
  22. // 长连接地址,非单独部署不用修改
  23. VUE_APP_WS_URL: `wss://${window.location.host}/ws`,
  24. // #endif
  25. // 以下配置在不做二开的前提下,不需要做任何的修改
  26. HEADER: {
  27. 'content-type': 'application/json',
  28. //#ifdef H5
  29. 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
  30. //#endif
  31. //#ifdef MP
  32. 'Form-type': 'routine',
  33. //#endif
  34. //#ifdef APP-PLUS
  35. 'Form-type': 'app',
  36. //#endif
  37. },
  38. // 回话密钥名称 请勿修改此配置
  39. TOKENNAME: 'Authori-zation',
  40. // 缓存时间 0 永久
  41. EXPIRE: 0,
  42. //分页最多显示条数
  43. LIMIT: 10
  44. }