groupon.js 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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 agreeAfterSales(data) {
  34. let url = "?afterSalesNo="+data.afterSalesNo
  35. return request.post("/v1/after-sales/agree" + url,data);
  36. }
  37. //绑定物流单号
  38. export function bindLogisticsNo(data) {
  39. let url = "?afterSalesNo="+data.afterSalesNo + "&logisticsNo="+data.logisticsNo
  40. return request.post("/v1/after-sales/bindLogisticsNo" + url,data);
  41. }
  42. //重新提交售后
  43. export function reSubmit(id) {
  44. let url = "?id="+id
  45. return request.post("/v1/after-sales/reSubmit" + url);
  46. }
  47. //驳回售后
  48. export function refuseAfterSales(afterSalesNo, reason) {
  49. let url = "?afterSalesNo="+afterSalesNo + "&refuseReason=" + reason
  50. return request.post("/v1/after-sales/refuse" + url);
  51. }
  52. // 新增意见反馈
  53. export function saveFilecontent(data) {
  54. return request.post("/v1/filecontent/saveFilecontent",data);
  55. }
  56. // 绑定上级
  57. export function bindParentId(parentId) {
  58. return request.post("/v1/commission/bindParentId?parentId="+parentId,null);
  59. }
  60. // 查询分佣列表
  61. export function commissionList(data) {
  62. return request.post("/v1/commission/list",data);
  63. }
  64. // 查询我的客户列表
  65. export function commissionUserList(data) {
  66. return request.post("/v1/commission/commissionUser/list",data);
  67. }
  68. // 查询我的分佣统计
  69. export function commissionStatistics() {
  70. return request.post("/v1/commission/statistics",null,{
  71. noAuth : true,
  72. });
  73. }
  74. // 获取核销订单商品
  75. export function getOrderGoodsList(orderId) {
  76. return request.post("/v1/order/getOrderGoodsList?orderId="+orderId);
  77. }
  78. // 取货核销
  79. export function getConfirmOrderList(data) {
  80. return request.post("/v1/order/getConfirmOrderList",data);
  81. }
  82. // 取货核销
  83. export function confirmOrder(pickupCode) {
  84. return request.post("/v1/order/confirmOrder?pickupCode="+pickupCode);
  85. }
  86. // 团长相关履约核销
  87. export function commitAppoint(id) {
  88. return request.post("/v1/commitAppoint?appointId="+id);
  89. }
  90. // 团长相关履约单列表
  91. export function appointList(data) {
  92. return request.post("/v1/appointList?type="+data.type,data);
  93. }
  94. // 查询系统消息
  95. export function getNotice(data) {
  96. return request.post("/v1/getNotice",data);
  97. }
  98. // 查询个人消息
  99. export function getMyMessage(data) {
  100. return request.post("/v1/getMyMessage",data);
  101. }
  102. // 查询团购统计数据
  103. export function grouponMngStatis() {
  104. return request.get("/v1/groupon/statis");
  105. }
  106. // 查询团购详情
  107. export function grouponMngDetail(id) {
  108. return request.get("/v1/groupon-mng/detail?groupId="+id,null,{
  109. noAuth:true
  110. });
  111. }
  112. // 查询团购列表
  113. export function grouponMngList(index,data) {
  114. return request.get("/v1/groupon-mng/list?state="+index,data);
  115. }
  116. // 查询最新团购列表
  117. export function latestGroupon(data) {
  118. return request.get("/v1/groupon/latest",data,{
  119. noAuth : true, //noAut 为true时前端不校验登录
  120. });
  121. }
  122. // 查询历史团购数据
  123. export function historyGroupon(data) {
  124. return request.get("/v1/groupon/history",data,{
  125. noAuth : true,
  126. });
  127. }
  128. // 团购详情
  129. export function detailGroupon(data) {
  130. return request.get("/v1/groupon/detail",data,{
  131. noAuth : true,
  132. });
  133. }
  134. // 商品详情接口
  135. export function goodsDetail(data) {
  136. return request.get("/v1/goods/detail",data);
  137. }
  138. // 发布团购
  139. export function publishGroupon(data) {
  140. return request.post("/v1/groupon/publish",data);
  141. }
  142. // 查询团购自提点
  143. export function getGrouponSelfTakeList(data) {
  144. return request.get("/v1/self-take/list",data);
  145. }
  146. // 分页查询所有自提点
  147. export function getAllSelfTake(data) {
  148. return request.get("/v1/selfTake/all", data);
  149. }