groupon.js 4.1 KB

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