list.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. <!-- 售后列表 -->
  2. <template>
  3. <s-layout title="售后列表">
  4. <!-- tab -->
  5. <su-sticky bgColor="#fff">
  6. <su-tabs :list="tabMaps" :scrollable="false" @change="onTabsChange" :current="state.currentTab" />
  7. </su-sticky>
  8. <s-empty v-if="state.pagination.total === 0" icon="/static/data-empty.png" text="暂无数据" />
  9. <!-- 列表 -->
  10. <view v-if="state.pagination.total > 0">
  11. <view class="list-box ss-m-y-20" v-for="order in state.pagination.list" :key="order.id"
  12. @tap="sheep.$router.go('/pages/order/aftersale/detail', { id: order.id })">
  13. <view class="order-head ss-flex ss-col-center ss-row-between">
  14. <text class="no">服务单号:{{ order.no }}</text>
  15. <text class="state">{{ formatAfterSaleStatus(order) }}</text>
  16. </view>
  17. <s-goods-item
  18. :img="order.picUrl"
  19. :title="order.spuName"
  20. :skuText="order.properties.map((property) => property.valueName).join(' ')"
  21. :price="order.refundPrice"
  22. />
  23. <view class="apply-box ss-flex ss-col-center ss-row-between border-bottom ss-p-x-20">
  24. <view class="ss-flex ss-col-center">
  25. <view class="title ss-m-r-20">{{ order.way === 10 ? '仅退款' : '退款退货' }}</view>
  26. <view class="value">{{ formatAfterSaleStatusDescription(order) }}</view>
  27. </view>
  28. <text class="_icon-forward"></text>
  29. </view>
  30. <view class="tool-btn-box ss-flex ss-col-center ss-row-right ss-p-r-20">
  31. <!-- TODO 功能缺失:填写退货信息 -->
  32. <view>
  33. <button class="ss-reset-button tool-btn" @tap.stop="onApply(order.id)"
  34. v-if="order?.buttons.includes('cancel')">取消申请</button>
  35. </view>
  36. </view>
  37. </view>
  38. </view>
  39. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{
  40. contentdown: '上拉加载更多',
  41. }" @tap="loadMore" />
  42. </s-layout>
  43. </template>
  44. <script setup>
  45. import sheep from '@/sheep';
  46. import { onLoad, onReachBottom } from '@dcloudio/uni-app';
  47. import { reactive } from 'vue';
  48. import _ from 'lodash';
  49. import { formatAfterSaleStatus, formatAfterSaleStatusDescription, handleAfterSaleButtons } from '@/sheep/hooks/useGoods';
  50. import AfterSaleApi from '@/sheep/api/trade/afterSale';
  51. const paginationNull = {
  52. list: [],
  53. total: 0,
  54. pageNo: 1,
  55. pageSize: 10
  56. };
  57. const state = reactive({
  58. currentTab: 0,
  59. showApply: false,
  60. pagination: {
  61. list: [],
  62. total: 0,
  63. pageNo: 1,
  64. pageSize: 10
  65. },
  66. loadStatus: '',
  67. });
  68. // TODO 非繁人:优化点,增加筛选
  69. const tabMaps = [{
  70. name: '全部',
  71. value: 'all',
  72. },
  73. // {
  74. // name: '申请中',
  75. // value: 'nooper',
  76. // },
  77. // {
  78. // name: '处理中',
  79. // value: 'ing',
  80. // },
  81. // {
  82. // name: '已完成',
  83. // value: 'completed',
  84. // },
  85. // {
  86. // name: '已拒绝',
  87. // value: 'refuse',
  88. // },
  89. ];
  90. // 切换选项卡
  91. function onTabsChange(e) {
  92. state.pagination = paginationNull
  93. state.currentTab = e.index;
  94. getOrderList();
  95. }
  96. // 获取售后列表
  97. async function getOrderList() {
  98. state.loadStatus = 'loading';
  99. let { data, code } = await AfterSaleApi.getAfterSalePage({
  100. // type: tabMaps[state.currentTab].value,
  101. pageNo: state.pagination.pageNo,
  102. pageSize: state.pagination.pageSize,
  103. });
  104. if (code !== 0) {
  105. return;
  106. }
  107. data.list.forEach(order => handleAfterSaleButtons(order));
  108. state.pagination.list = _.concat(state.pagination.list, data.list);
  109. state.pagination.total = data.total;
  110. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  111. }
  112. function onApply(orderId) {
  113. uni.showModal({
  114. title: '提示',
  115. content: '确定要取消此申请吗?',
  116. success: async function(res) {
  117. if (!res.confirm) {
  118. return;
  119. }
  120. const { code } = await AfterSaleApi.cancelAfterSale(orderId);
  121. if (code === 0) {
  122. state.pagination = paginationNull
  123. await getOrderList();
  124. }
  125. },
  126. });
  127. }
  128. onLoad(async (options) => {
  129. if (options.type) {
  130. state.currentTab = options.type;
  131. }
  132. await getOrderList();
  133. });
  134. // 加载更多
  135. function loadMore() {
  136. if (state.loadStatus === 'noMore') {
  137. return
  138. }
  139. state.pagination.pageNo++;
  140. getOrderList();
  141. }
  142. // 上拉加载更多
  143. onReachBottom(() => {
  144. loadMore();
  145. });
  146. </script>
  147. <style lang="scss" scoped>
  148. .list-box {
  149. background-color: #fff;
  150. .order-head {
  151. padding: 0 25rpx;
  152. height: 77rpx;
  153. }
  154. .apply-box {
  155. height: 82rpx;
  156. .title {
  157. font-size: 24rpx;
  158. }
  159. .value {
  160. font-size: 22rpx;
  161. color: $dark-6;
  162. }
  163. }
  164. .tool-btn-box {
  165. height: 100rpx;
  166. .tool-btn {
  167. width: 160rpx;
  168. height: 60rpx;
  169. background: #f6f6f6;
  170. border-radius: 30rpx;
  171. font-size: 26rpx;
  172. font-weight: 400;
  173. }
  174. }
  175. }
  176. </style>