app.js 865 B

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