afterSalesManage.vue 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <template>
  2. <view>
  3. <view class="top-tab">
  4. <view
  5. :class="{ commodity: follow == '' }"
  6. class="tab"
  7. @click="tabSwitch('')"
  8. >
  9. 全部
  10. </view>
  11. <view
  12. :class="{ commodity: follow == '0' }"
  13. class="tab"
  14. @click="tabSwitch('0')"
  15. >
  16. 待退款
  17. </view>
  18. <view
  19. :class="{ commodity: follow == 3 }"
  20. class="tab"
  21. @click="tabSwitch(3)"
  22. >
  23. 平台介入
  24. </view>
  25. <view
  26. :class="{ commodity: follow == 1 }"
  27. class="tab"
  28. @click="tabSwitch(1)"
  29. >
  30. 已退款
  31. </view>
  32. </view>
  33. <view class="center">
  34. <view v-for="item in orderList" :key="item.id">
  35. <DetailCard
  36. :itemInfo="item"
  37. @toDetail="toDetail"
  38. @agreeRefund="agreeRefund"
  39. @refuseRefund="refuseRefund"
  40. @platformIntervene="platformIntervene"
  41. @openPop="openPop"
  42. />
  43. </view>
  44. </view>
  45. <AgreePop :title="title" :show="show" @close="close" @refund="refund" />
  46. <RefusePopup :show="refuseShow" @close="close" @refund="refund" />
  47. </view>
  48. </template>
  49. <script>
  50. import DetailCard from "./component/detailCard.vue";
  51. import AgreePop from "./component/agreePop.vue";
  52. import RefusePopup from "../afterSalesDetail/component/refusePopup";
  53. export default {
  54. components: {
  55. DetailCard,
  56. AgreePop,
  57. RefusePopup,
  58. },
  59. data() {
  60. return {
  61. follow: "",
  62. orderList: [],
  63. show: false,
  64. needRdfundOrder: {},
  65. refuseShow: false,
  66. page: 1,
  67. total: 0,
  68. title: "",
  69. };
  70. },
  71. methods: {
  72. tabSwitch(num) {
  73. this.follow = num;
  74. this.getOrderList();
  75. },
  76. toDetail(item) {
  77. uni.navigateTo({
  78. url: "/pageD/afterSalesDetail/afterSalesDetail?id=" + item.id,
  79. });
  80. },
  81. //获取售后订单
  82. getOrderList() {
  83. uni.$u.http
  84. .get(
  85. `/api/order/refund_order?status=${this.follow}&page=${this.page}&limit=10`
  86. )
  87. .then((res) => {
  88. this.orderList = res.data;
  89. this.total = res.total;
  90. });
  91. },
  92. //平台介入
  93. platformIntervene(item) {
  94. uni.$u.http
  95. .post(`/api/order_refund/platform_intervention`, {
  96. order_refund_id: item.id,
  97. })
  98. .then((res) => {
  99. uni.showToast({
  100. title: "已申请平台介入",
  101. icon: "none",
  102. });
  103. this.getOrderList();
  104. });
  105. },
  106. //关闭退款确认框
  107. close() {
  108. this.show = false;
  109. this.refuseShow = false;
  110. },
  111. //打开删除确认框
  112. openPop(value) {
  113. this.title = "是否确认删除售后记录";
  114. this.show = true;
  115. this.needDeleteGoods = value;
  116. },
  117. //确认退款 or 拒绝退款 or 删除记录
  118. refund(status, value) {
  119. if (this.title == "是否确认退款") {
  120. //处理退款
  121. uni.$u.http
  122. .post(`/api/order_refund/examine`, {
  123. status,
  124. order_refund_id: this.needRdfundOrder.id,
  125. reason: value,
  126. })
  127. .then((res) => {
  128. this.show = false;
  129. this.refuseShow = false;
  130. uni.showToast({
  131. title: status == 1 ? "已同意退款" : "已拒绝退款",
  132. icon: "none",
  133. });
  134. this.getOrderList();
  135. });
  136. } else {
  137. //订单删除
  138. uni.$u.http
  139. .post(`api/order/refund_order_del`, {
  140. order_refund_id: this.needDeleteGoods.id,
  141. })
  142. .then((res) => {
  143. uni.showToast({
  144. title: "商品已删除",
  145. icon: "none",
  146. });
  147. this.show = false;
  148. this.getOrderList();
  149. });
  150. }
  151. },
  152. refuseRefund(item) {
  153. this.refuseShow = true;
  154. this.needRdfundOrder = item;
  155. },
  156. //打开同意退款确认框
  157. agreeRefund(item) {
  158. this.title = "是否确认退款";
  159. this.show = true;
  160. this.needRdfundOrder = item;
  161. },
  162. },
  163. mounted() {
  164. this.getOrderList();
  165. uni.setNavigationBarTitle({
  166. title: "售后订单",
  167. });
  168. },
  169. };
  170. </script>
  171. <style lang="scss" scoped>
  172. .top-tab {
  173. display: flex;
  174. justify-content: space-around;
  175. overflow-y: auto;
  176. padding-bottom: 10rpx;
  177. // flex-shrink: 1;
  178. // width: 100vw;
  179. background-color: #fff;
  180. .tab {
  181. margin-right: 40rpx;
  182. font-size: 26rpx;
  183. color: rgba(34, 34, 34, 0.8);
  184. flex-shrink: 0;
  185. height: 44rpx;
  186. display: flex;
  187. align-items: flex-end;
  188. }
  189. .commodity {
  190. position: relative;
  191. font-weight: 600;
  192. font-size: 32rpx;
  193. }
  194. .commodity::before {
  195. content: "";
  196. display: block;
  197. height: 8rpx;
  198. width: 100%;
  199. background: linear-gradient(to right, #f83224, #fff);
  200. position: absolute;
  201. bottom: 5rpx;
  202. opacity: 0.8;
  203. }
  204. }
  205. .center {
  206. padding: 20rpx 24rpx;
  207. }
  208. </style>