base.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import { post, get, getL, postL } from '@/utils/http'
  2. import { SERVICE_URL } from '@/utils/config'
  3. export const trans = (promise) => {
  4. return promise
  5. .then((data) => {
  6. return data
  7. })
  8. .catch((err) => {
  9. return err
  10. })
  11. }
  12. export default {
  13. apis: {
  14. UPLOAD: SERVICE_URL + '/api/oss/file/upload',
  15. MESSAGE: SERVICE_URL + '/api/app/message',
  16. PAGE_CONFIG: SERVICE_URL + '/api/app/page/getByPageId',
  17. MiNI_CODE: SERVICE_URL + '/api/wechatMa/getWxaCodeUnlimitBytes',
  18. TRACK: SERVICE_URL + '/api/track',
  19. VERSION_TRACK: SERVICE_URL + '/api/app/version/track',
  20. FEEDBACK: SERVICE_URL + '/api/app/feedback/submit'
  21. },
  22. async track() {
  23. const res = await trans(get(this.apis.TRACK))
  24. return res.data
  25. },
  26. async track2() {
  27. const res = await trans(getL(this.apis.VERSION_TRACK))
  28. return res.data
  29. },
  30. async message(current, size, type) {
  31. let param = {
  32. current,
  33. size
  34. }
  35. !!type && (param.type = type)
  36. const res = await trans(get(this.apis.MESSAGE, param))
  37. return res.success ? res.data : null
  38. },
  39. async pageConfig(pageId) {
  40. let res = await trans(get(this.apis.PAGE_CONFIG, { pageId }))
  41. return res.data
  42. },
  43. async feedbackSubmit(data, loading = false) {
  44. let res = await trans(post(this.apis.FEEDBACK, data, { loading }))
  45. return res.data
  46. },
  47. async feedbackSubmit(data, loading = false) {
  48. let res = await trans(post(this.apis.FEEDBACK, data, { loading }))
  49. return res.data
  50. },
  51. async getLatest() {
  52. let res = await trans(get(SERVICE_URL + '/api/app/version/getLatest'))
  53. return res.data
  54. },
  55. }