list.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. <!-- 订单列表 -->
  2. <template>
  3. <s-layout title="我的订单">
  4. <su-sticky bgColor="#fff">
  5. <su-tabs :list="tabMaps" :scrollable="false" @change="onTabsChange" :current="state.currentTab" />
  6. </su-sticky>
  7. <s-empty v-if="state.pagination.total === 0" icon="/static/order-empty.png" text="暂无订单" />
  8. <view v-if="state.pagination.total > 0">
  9. <view class="bg-white order-list-card-box ss-r-10 ss-m-t-14 ss-m-20" v-for="order in state.pagination.list"
  10. :key="order.id" @tap="onOrderDetail(order.id)">
  11. <view class="order-card-header ss-flex ss-col-center ss-row-between ss-p-x-20">
  12. <view class="order-no">订单号:{{ order.no }}</view>
  13. <view class="order-state ss-font-26" :class="formatOrderColor(order)">
  14. {{ formatOrderStatus(order) }}
  15. </view>
  16. </view>
  17. <view class="border-bottom" v-for="item in order.items" :key="item.id">
  18. <s-goods-item
  19. :img="item.picUrl"
  20. :title="item.spuName"
  21. :skuText="item.properties.map((property) => property.valueName).join(' ')"
  22. :price="item.price"
  23. :num="item.count"
  24. />
  25. </view>
  26. <view class="pay-box ss-m-t-30 ss-flex ss-row-right ss-p-r-20">
  27. <view class="ss-flex ss-col-center">
  28. <view class="discounts-title pay-color">共 {{ order.productCount }} 件商品,总金额:</view>
  29. <view class="discounts-money pay-color">
  30. ¥{{ fen2yuan(order.payPrice) }}
  31. </view>
  32. </view>
  33. </view>
  34. <view class="order-card-footer ss-flex ss-col-center ss-p-x-20"
  35. :class="order.buttons.length > 3 ? 'ss-row-between' : 'ss-row-right'">
  36. <view class="ss-flex ss-col-center">
  37. <button v-if="order.buttons.includes('combination')" class="tool-btn ss-reset-button"
  38. @tap.stop="onOrderGroupon(order)">
  39. 拼团详情
  40. </button>
  41. <button v-if="order.buttons.length === 0" class="tool-btn ss-reset-button"
  42. @tap.stop="onOrderDetail(order.id)">
  43. 查看详情
  44. </button>
  45. <button v-if="order.buttons.includes('confirm')" class="tool-btn ss-reset-button"
  46. @tap.stop="onConfirm(order)">
  47. 确认收货
  48. </button>
  49. <button v-if="order.buttons.includes('express')" class="tool-btn ss-reset-button"
  50. @tap.stop="onExpress(order.id)">
  51. 查看物流
  52. </button>
  53. <button v-if="order.buttons.includes('cancel')" class="tool-btn ss-reset-button"
  54. @tap.stop="onCancel(order.id)">
  55. 取消订单
  56. </button>
  57. <button v-if="order.buttons.includes('comment')" class="tool-btn ss-reset-button"
  58. @tap.stop="onComment(order.id)">
  59. 评价
  60. </button>
  61. <button v-if="order.buttons.includes('delete')" class="delete-btn ss-reset-button"
  62. @tap.stop="onDelete(order.id)">
  63. 删除订单
  64. </button>
  65. <button v-if="order.buttons.includes('pay')" class="tool-btn ss-reset-button ui-BG-Main-Gradient"
  66. @tap.stop="onPay(order.payOrderId)">
  67. 继续支付
  68. </button>
  69. </view>
  70. </view>
  71. </view>
  72. </view>
  73. <!-- 加载更多 -->
  74. <uni-load-more v-if="state.pagination.total > 0" :status="state.loadStatus" :content-text="{
  75. contentdown: '上拉加载更多',
  76. }" @tap="loadMore" />
  77. </s-layout>
  78. </template>
  79. <script setup>
  80. import { reactive } from 'vue';
  81. import { onLoad, onReachBottom, onPullDownRefresh } from '@dcloudio/uni-app';
  82. import {
  83. fen2yuan,
  84. formatOrderColor, formatOrderStatus, handleOrderButtons,
  85. } from '@/sheep/hooks/useGoods';
  86. import sheep from '@/sheep';
  87. import _ from 'lodash';
  88. import {
  89. isEmpty
  90. } from 'lodash';
  91. import OrderApi from '@/sheep/api/trade/order';
  92. import { resetPagination } from '@/sheep/util';
  93. // 数据
  94. const state = reactive({
  95. currentTab: 0, // 选中的 tabMaps 下标
  96. pagination: {
  97. list: [],
  98. total: 0,
  99. pageNo: 1,
  100. pageSize: 5,
  101. },
  102. loadStatus: ''
  103. });
  104. const tabMaps = [{
  105. name: '全部'
  106. },
  107. {
  108. name: '待付款',
  109. value: 0,
  110. },
  111. {
  112. name: '待发货',
  113. value: 10,
  114. },
  115. {
  116. name: '待收货',
  117. value: 20,
  118. },
  119. {
  120. name: '待评价',
  121. value: 30,
  122. },
  123. ];
  124. // 切换选项卡
  125. function onTabsChange(e) {
  126. if (state.currentTab === e.index) {
  127. return;
  128. }
  129. // 重头加载代码
  130. resetPagination(state.pagination);
  131. state.currentTab = e.index;
  132. getOrderList();
  133. }
  134. // 订单详情
  135. function onOrderDetail(id) {
  136. sheep.$router.go('/pages/order/detail', {
  137. id,
  138. });
  139. }
  140. // 跳转拼团记录的详情
  141. function onOrderGroupon(order) {
  142. sheep.$router.go('/pages/activity/groupon/detail', {
  143. id: order.combinationRecordId,
  144. });
  145. }
  146. // 继续支付
  147. function onPay(payOrderId) {
  148. sheep.$router.go('/pages/pay/index', {
  149. id: payOrderId,
  150. });
  151. }
  152. // 评价
  153. function onComment(id) {
  154. sheep.$router.go('/pages/goods/comment/add', {
  155. id,
  156. });
  157. }
  158. // 确认收货 TODO 芋艿:待测试
  159. async function onConfirm(order, ignore = false) {
  160. // 需开启确认收货组件
  161. // todo: 芋艿:需要后续接入微信收货组件
  162. // 1.怎么检测是否开启了发货组件功能?如果没有开启的话就不能在这里return出去
  163. // 2.如果开启了走mpConfirm方法,需要在App.vue的show方法中拿到确认收货结果
  164. let isOpenBusinessView = true;
  165. if (
  166. sheep.$platform.name === 'WechatMiniProgram' &&
  167. !isEmpty(order.wechat_extra_data) &&
  168. isOpenBusinessView &&
  169. !ignore
  170. ) {
  171. mpConfirm(order);
  172. return;
  173. }
  174. // 正常的确认收货流程
  175. const { code } = await OrderApi.receiveOrder(order.id);
  176. if (code === 0) {
  177. resetPagination(state.pagination);
  178. await getOrderList();
  179. }
  180. }
  181. // #ifdef MP-WEIXIN
  182. // 小程序确认收货组件 TODO 芋艿:后续再接入
  183. function mpConfirm(order) {
  184. if (!wx.openBusinessView) {
  185. sheep.$helper.toast(`请升级微信版本`);
  186. return;
  187. }
  188. wx.openBusinessView({
  189. businessType: 'weappOrderConfirm',
  190. extraData: {
  191. merchant_id: '1481069012',
  192. merchant_trade_no: order.wechat_extra_data.merchant_trade_no,
  193. transaction_id: order.wechat_extra_data.transaction_id,
  194. },
  195. success(response) {
  196. console.log('success:', response);
  197. if (response.errMsg === 'openBusinessView:ok') {
  198. if (response.extraData.status === 'success') {
  199. onConfirm(order, true);
  200. }
  201. }
  202. },
  203. fail(error) {
  204. console.log('error:', error);
  205. },
  206. complete(result) {
  207. console.log('result:', result);
  208. },
  209. });
  210. }
  211. // #endif
  212. // 查看物流
  213. async function onExpress(id) {
  214. sheep.$router.go('/pages/order/express/log', {
  215. id,
  216. });
  217. }
  218. // 取消订单
  219. async function onCancel(orderId) {
  220. uni.showModal({
  221. title: '提示',
  222. content: '确定要取消订单吗?',
  223. success: async function(res) {
  224. if (!res.confirm) {
  225. return;
  226. }
  227. const { code } = await OrderApi.cancelOrder(orderId);
  228. if (code === 0) {
  229. // 修改数据的状态
  230. let index = state.pagination.list.findIndex((order) => order.id === orderId);
  231. const orderInfo = state.pagination.list[index];
  232. orderInfo.status = 40;
  233. handleOrderButtons(orderInfo);
  234. }
  235. },
  236. });
  237. }
  238. // 删除订单
  239. function onDelete(orderId) {
  240. uni.showModal({
  241. title: '提示',
  242. content: '确定要删除订单吗?',
  243. success: async function(res) {
  244. if (res.confirm) {
  245. const { code } = await OrderApi.deleteOrder(orderId);
  246. if (code === 0) {
  247. // 删除数据
  248. let index = state.pagination.list.findIndex((order) => order.id === orderId);
  249. state.pagination.list.splice(index, 1);
  250. }
  251. }
  252. },
  253. });
  254. }
  255. // 获取订单列表
  256. async function getOrderList() {
  257. state.loadStatus = 'loading';
  258. let { code, data } = await OrderApi.getOrderPage({
  259. pageNo: state.pagination.pageNo,
  260. pageSize: state.pagination.pageSize,
  261. status: tabMaps[state.currentTab].value,
  262. commentStatus: tabMaps[state.currentTab].value === 30 ? false : null
  263. });
  264. if (code !== 0) {
  265. return;
  266. }
  267. data.list.forEach(order => handleOrderButtons(order));
  268. state.pagination.list = _.concat(state.pagination.list, data.list)
  269. state.pagination.total = data.total;
  270. state.loadStatus = state.pagination.list.length < state.pagination.total ? 'more' : 'noMore';
  271. }
  272. onLoad(async (options) => {
  273. if (options.type) {
  274. state.currentTab = options.type;
  275. }
  276. await getOrderList();
  277. });
  278. // 加载更多
  279. function loadMore() {
  280. if (state.loadStatus === 'noMore') {
  281. return
  282. }
  283. state.pagination.pageNo++;
  284. getOrderList();
  285. }
  286. // 上拉加载更多
  287. onReachBottom(() => {
  288. loadMore();
  289. });
  290. // 下拉刷新
  291. onPullDownRefresh(() => {
  292. resetPagination(state.pagination);
  293. getOrderList();
  294. setTimeout(function() {
  295. uni.stopPullDownRefresh();
  296. }, 800);
  297. });
  298. </script>
  299. <style lang="scss" scoped>
  300. .score-img {
  301. width: 36rpx;
  302. height: 36rpx;
  303. margin: 0 4rpx;
  304. }
  305. .tool-btn {
  306. width: 160rpx;
  307. height: 60rpx;
  308. background: #f6f6f6;
  309. font-size: 26rpx;
  310. border-radius: 30rpx;
  311. margin-right: 10rpx;
  312. &:last-of-type {
  313. margin-right: 0;
  314. }
  315. }
  316. .delete-btn {
  317. width: 160rpx;
  318. height: 56rpx;
  319. color: #ff3000;
  320. background: #fee;
  321. border-radius: 28rpx;
  322. font-size: 26rpx;
  323. margin-right: 10rpx;
  324. line-height: normal;
  325. &:last-of-type {
  326. margin-right: 0;
  327. }
  328. }
  329. .apply-btn {
  330. width: 140rpx;
  331. height: 50rpx;
  332. border-radius: 25rpx;
  333. font-size: 24rpx;
  334. border: 2rpx solid #dcdcdc;
  335. line-height: normal;
  336. margin-left: 16rpx;
  337. }
  338. .swiper-box {
  339. flex: 1;
  340. .swiper-item {
  341. height: 100%;
  342. width: 100%;
  343. }
  344. }
  345. .order-list-card-box {
  346. .order-card-header {
  347. height: 80rpx;
  348. .order-no {
  349. font-size: 26rpx;
  350. font-weight: 500;
  351. }
  352. .order-state {}
  353. }
  354. .pay-box {
  355. .discounts-title {
  356. font-size: 24rpx;
  357. line-height: normal;
  358. color: #999999;
  359. }
  360. .discounts-money {
  361. font-size: 24rpx;
  362. line-height: normal;
  363. color: #999;
  364. font-family: OPPOSANS;
  365. }
  366. .pay-color {
  367. color: #333;
  368. }
  369. }
  370. .order-card-footer {
  371. height: 100rpx;
  372. .more-item-box {
  373. padding: 20rpx;
  374. .more-item {
  375. height: 60rpx;
  376. .title {
  377. font-size: 26rpx;
  378. }
  379. }
  380. }
  381. .more-btn {
  382. color: $dark-9;
  383. font-size: 24rpx;
  384. }
  385. .content {
  386. width: 154rpx;
  387. color: #333333;
  388. font-size: 26rpx;
  389. font-weight: 500;
  390. }
  391. }
  392. }
  393. :deep(.uni-tooltip-popup) {
  394. background: var(--ui-BG);
  395. }
  396. .warning-color {
  397. color: #faad14;
  398. }
  399. .danger-color {
  400. color: #ff3000;
  401. }
  402. .success-color {
  403. color: #52c41a;
  404. }
  405. .info-color {
  406. color: #999999;
  407. }
  408. </style>