groupon.js 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. import request from "@/utils/request.js";
  2. //获取协议
  3. export function getNoticeByType(type) {
  4. return request.get("/v1/getNoticeByType?type=" +type,null);
  5. }
  6. //获取用户售后详情
  7. export function getUserAfterSalesDetail(afterSalesId) {
  8. return request.get("/v1/after-sales/user/detail?afterSalesId=" +afterSalesId,null);
  9. }
  10. //获取用户售后列表
  11. export function getUserAfterSalesList(data) {
  12. return request.post("/v1/after-sales/user/list?state="+data.state,data);
  13. }
  14. //获取售后原因列表
  15. export function reasonList() {
  16. return request.get("/v1/after-sales/reason/list",null);
  17. }
  18. //获取售后原因列表
  19. export function afterSalesSubmit(data) {
  20. return request.post("/v1/after-sales/submit",data);
  21. }
  22. //同意售后
  23. export function agreeAfterSales(data) {
  24. let url = "?afterSalesNo="+data.afterSalesNo
  25. return request.post("/v1/after-sales/agree" + url,data);
  26. }
  27. //绑定物流单号
  28. export function bindLogisticsNo(data) {
  29. let url = "?afterSalesNo="+data.afterSalesNo + "&logisticsNo="+data.logisticsNo
  30. return request.post("/v1/after-sales/bindLogisticsNo" + url,data);
  31. }
  32. // 新增意见反馈
  33. export function saveFilecontent(data) {
  34. return request.post("/v1/filecontent/saveFilecontent",data);
  35. }
  36. // 绑定上级
  37. export function bindParentId(parentId) {
  38. return request.post("/v1/commission/bindParentId?parentId="+parentId,null);
  39. }
  40. // 查询分佣列表
  41. export function commissionList(data) {
  42. return request.post("/v1/commission/list",data);
  43. }
  44. // 查询我的客户列表
  45. export function commissionUserList(data) {
  46. return request.post("/v1/commission/commissionUser/list",data);
  47. }
  48. // 查询我的分佣统计
  49. export function commissionStatistics() {
  50. return request.post("/v1/commission/statistics",null,{
  51. noAuth : true,
  52. });
  53. }
  54. // 获取核销订单商品
  55. export function getOrderGoodsList(orderId) {
  56. return request.post("/v1/order/getOrderGoodsList?orderId="+orderId);
  57. }
  58. // 取货核销
  59. export function getConfirmOrderList(data) {
  60. return request.post("/v1/order/getConfirmOrderList",data);
  61. }
  62. // 取货核销
  63. export function confirmOrder(pickupCode) {
  64. return request.post("/v1/order/confirmOrder?pickupCode="+pickupCode);
  65. }
  66. // 团长相关履约核销
  67. export function commitAppoint(id) {
  68. return request.post("/v1/commitAppoint?appointId="+id);
  69. }
  70. // 团长相关履约单列表
  71. export function appointList(data) {
  72. return request.post("/v1/appointList?type="+data.type,data);
  73. }
  74. // 查询系统消息
  75. export function getNotice(data) {
  76. return request.post("/v1/getNotice",data);
  77. }
  78. // 查询个人消息
  79. export function getMyMessage(data) {
  80. return request.post("/v1/getMyMessage",data);
  81. }
  82. // 查询团购统计数据
  83. export function grouponMngStatis() {
  84. return request.get("/v1/groupon/statis");
  85. }
  86. // 查询团购详情
  87. export function grouponMngDetail(id) {
  88. return request.get("/v1/groupon-mng/detail?groupId="+id);
  89. }
  90. // 查询团购列表
  91. export function grouponMngList(index,data) {
  92. return request.get("/v1/groupon-mng/list?state="+index,data);
  93. }
  94. // 查询最新团购列表
  95. export function latestGroupon(data) {
  96. return request.get("/v1/groupon/latest",data,{
  97. noAuth : true, //noAut 为true时前端不校验登录
  98. });
  99. }
  100. // 查询历史团购数据
  101. export function historyGroupon(data) {
  102. return request.get("/v1/groupon/history",data,{
  103. noAuth : true,
  104. });
  105. }
  106. // 团购详情
  107. export function detailGroupon(data) {
  108. return request.get("/v1/groupon/detail",data,{
  109. noAuth : true,
  110. });
  111. }
  112. // 商品详情接口
  113. export function goodsDetail(data) {
  114. return request.get("/v1/goods/detail",data);
  115. }
  116. // 发布团购
  117. export function publishGroupon(data) {
  118. return request.post("/v1/groupon/publish",data);
  119. }
  120. // 查询团购自提点
  121. export function getGrouponSelfTakeList(data) {
  122. return request.get("/v1/self-take/list",data);
  123. }
  124. // 分页查询所有自提点
  125. export function getAllSelfTake(data) {
  126. return request.get("/v1/selfTake/all", data);
  127. }