groupon.js 4.7 KB

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