app.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // #ifdef H5
  2. let VUE_APP_WS_URL = `ws://${location.hostname}?type=user`
  3. // #endif
  4. let openPlantGrass = '-openPlantGrass-'
  5. // 网络接口修改此字符 小程序域名要求
  6. // let httpApi = 'http://192.168.3.20:8324' //测试
  7. // let httpApi = 'https://crmeb.hdlkeji.com' //测试
  8. // let httpApi = 'https://multi-merchant.hdlkeji.com' //测试
  9. // let httpApi = 'https://crmeb.hdlkeji.com/' //测试
  10. let httpApi = 'https://hongbaomi.com' //生产
  11. // let httpApi = 'https://hbm.hdlkeji.com' //生产
  12. // let httpApi = 'https://mer1.crmeb.net' //生产
  13. // 聊天接口修改此字符 小程序聊天要求wss 例如:wss://mer.crmeb.net
  14. // let wsApi = 'ws://192.168.3.20:8324'
  15. // let wsApi = 'wss://mer1.crmeb.net'
  16. let wsApi = 'wss://hongbaomi.com'
  17. // let wsApi = 'https://hbm.hdlkeji.com'
  18. module.exports = {
  19. // 请求域名 格式: https://您的域名
  20. // #ifdef MP || APP-PLUS
  21. // HTTP_REQUEST_URL: httpApi,
  22. HTTP_REQUEST_URL: httpApi,
  23. VUE_APP_WS_URL: `${wsApi}?type=user`,
  24. // #endif
  25. // #ifdef H5
  26. //H5接口是浏览器地址
  27. HTTP_REQUEST_URL: httpApi || window.location.protocol + "//" + window.location.host,
  28. // 聊天长连接地址
  29. VUE_APP_WS_URL: wsApi ? `${wsApi}?type=user` : VUE_APP_WS_URL,
  30. // #endif
  31. openPlantGrass: openPlantGrass,
  32. HEADER: {
  33. 'content-type': 'application/json',
  34. //#ifdef H5
  35. 'Form-type': navigator.userAgent.toLowerCase().indexOf("micromessenger") !== -1 ? 'wechat' : 'h5',
  36. //#endif
  37. //#ifdef MP
  38. 'Form-type': 'routine',
  39. //#endif
  40. //#ifdef APP-PLUS
  41. 'Form-type': 'app',
  42. //#endif
  43. },
  44. // 回话密钥名称 请勿修改此配置
  45. TOKENNAME: 'X-Token',
  46. // 缓存时间 0 永久
  47. EXPIRE: 0,
  48. };