config.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. //基本配置项
  2. const base = {
  3. debug: false
  4. }
  5. const im = {
  6. host : 'ws://he.shemic.com:8282'
  7. }
  8. const share = {
  9. host : 'https://he.shemic.com/package/share/?l=api.'
  10. }
  11. //http request请求配置
  12. const request = {
  13. // 服务器接口地址
  14. host: "https://he.shemic.com/",
  15. //host: "http://192.168.33.10/dreamland/",
  16. // 请求的参数
  17. data: {},
  18. // 设置请求的 header,header 中不能设置 Referer。
  19. header: {'content-type': 'application/x-www-form-urlencoded'},
  20. // (需大写)有效值:OPTIONS, GET, HEAD, POST, PUT, DELETE, TRACE, CONNECT
  21. method: "POST",
  22. // json 如果设为json,会尝试对返回的数据做一次 JSON.parse
  23. dataType: "json",
  24. // text 设置响应的数据类型。合法值:text、arraybuffer 1.7.0
  25. responseType: "text",
  26. // 收到开发者服务成功返回的回调函数
  27. success() {},
  28. // 接口调用失败的回调函数
  29. fail() {},
  30. // 接口调用结束的回调函数(调用成功、失败都会执行)
  31. complete() {},
  32. }
  33. //上传配置
  34. const upload = {
  35. url: request.host + 'package/upload/?l=save.start&key=6',
  36. name: 'file',
  37. }
  38. //后端服务列表
  39. const server = {
  40. }
  41. export default {
  42. base,
  43. request,
  44. server,
  45. upload,
  46. im,
  47. share,
  48. }