app.js 1.1 KB

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