afterSalesManage.vue 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <view>
  3. <view class="top-tab">
  4. <view
  5. :class="{ commodity: follow == 1 }"
  6. class="tab"
  7. @click="tabSwitch(1)"
  8. >
  9. 全部
  10. </view>
  11. <view
  12. :class="{ commodity: follow == 2 }"
  13. class="tab"
  14. @click="tabSwitch(2)"
  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 == 4 }"
  27. class="tab"
  28. @click="tabSwitch(4)"
  29. >
  30. 已退款
  31. </view>
  32. </view>
  33. <view class="center">
  34. <view v-for="item in orderList" :key="item.status">
  35. <DetailCard :itemInfo="item" @toDetail="toDetail" />
  36. </view>
  37. </view>
  38. </view>
  39. </template>
  40. <script>
  41. import DetailCard from "./component/detailCard.vue";
  42. export default {
  43. components: {
  44. DetailCard,
  45. },
  46. data() {
  47. return {
  48. follow: 1,
  49. orderList: [],
  50. };
  51. },
  52. methods: {
  53. tabSwitch(num) {
  54. this.follow = num;
  55. },
  56. toDetail() {
  57. uni.navigateTo({
  58. url: "/pageD/afterSalesDetail/afterSalesDetail",
  59. });
  60. },
  61. getOrderList() {
  62. uni.$u.http.get(`/api/order/refund_order`).then((res) => {
  63. console.log(res);
  64. this.orderList = res.data;
  65. });
  66. },
  67. },
  68. mounted() {
  69. this.getOrderList();
  70. uni.setNavigationBarTitle({
  71. title: "售后订单",
  72. });
  73. },
  74. };
  75. </script>
  76. <style lang="scss" scoped>
  77. .top-tab {
  78. display: flex;
  79. justify-content: space-around;
  80. overflow-y: auto;
  81. padding-bottom: 10rpx;
  82. // flex-shrink: 1;
  83. // width: 100vw;
  84. background-color: #fff;
  85. .tab {
  86. margin-right: 40rpx;
  87. font-size: 26rpx;
  88. color: rgba(34, 34, 34, 0.8);
  89. flex-shrink: 0;
  90. height: 44rpx;
  91. display: flex;
  92. align-items: flex-end;
  93. }
  94. .commodity {
  95. position: relative;
  96. font-weight: 600;
  97. font-size: 32rpx;
  98. }
  99. .commodity::before {
  100. content: "";
  101. display: block;
  102. height: 8rpx;
  103. width: 100%;
  104. background: linear-gradient(to right, #f83224, #fff);
  105. position: absolute;
  106. bottom: 5rpx;
  107. opacity: 0.8;
  108. }
  109. }
  110. .center {
  111. padding: 20rpx 24rpx;
  112. }
  113. </style>