国外MOSE官网
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

46 lines
872 B

  1. import request from "@/api/request";
  2. export default {
  3. // 兑换记录- 确认取货
  4. async finishOrder(data) {
  5. return request({
  6. url: '/order/finishOrder',
  7. method: 'POST',
  8. data
  9. })
  10. },
  11. // 兑换记录- 查看订单详情
  12. async queryOrderById(data) {
  13. return request({
  14. url: '/order/queryOrderById',
  15. method: 'GET',
  16. data
  17. })
  18. },
  19. // 兑换记录- 查看订单列表
  20. async queryOrderList(data) {
  21. return request({
  22. url: '/order/queryOrderList',
  23. method: 'GET',
  24. data
  25. })
  26. },
  27. // 我的资料- 获取个人信息
  28. async queryUser() {
  29. return request({
  30. url: '/userInfo/queryUser',
  31. method: 'GET'
  32. })
  33. },
  34. // 我的资料- 修改个人信息
  35. async updateUser(data) {
  36. return request({
  37. url: '/userInfo/updateUser',
  38. method: 'POST',
  39. data
  40. })
  41. },
  42. }