list.vue 10 KB

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