list.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  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,index) 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.id)">
  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.list = []
  141. state.pagination.current_page = 1
  142. state.pagination.total = 1
  143. state.pagination.last_page = 1
  144. state.currentTab = e.index;
  145. getOrderList();
  146. }
  147. // 订单详情
  148. function onOrderDetail(id) {
  149. sheep.$router.go('/pages/order/detail', {
  150. id,
  151. });
  152. }
  153. // 分享拼团 TODO 非繁人:待测试
  154. function onOrderGroupon(order) {
  155. sheep.$router.go('/pages/activity/groupon/detail', {
  156. id: order.ext.groupon_id,
  157. });
  158. }
  159. // 继续支付
  160. function onPay(id) {
  161. sheep.$router.go('/pages/pay/index', {
  162. id: id,
  163. openType:2
  164. });
  165. }
  166. // 评价
  167. function onComment(id) {
  168. sheep.$router.go('/pages/goods/comment/add', {
  169. id,
  170. });
  171. }
  172. // 确认收货
  173. async function onConfirm(order, ignore = false) {
  174. // 需开启确认收货组件
  175. // todo: 非繁人:需要后续接入微信收货组件
  176. // 1.怎么检测是否开启了发货组件功能?如果没有开启的话就不能在这里return出去
  177. // 2.如果开启了走mpConfirm方法,需要在App.vue的show方法中拿到确认收货结果
  178. let isOpenBusinessView = true;
  179. if (
  180. sheep.$platform.name === 'WechatMiniProgram' &&
  181. !isEmpty(order.wechat_extra_data) &&
  182. isOpenBusinessView &&
  183. !ignore
  184. ) {
  185. mpConfirm(order);
  186. return;
  187. }
  188. // 正常的确认收货流程
  189. const {
  190. code
  191. } = await OrderApi.receiveOrder(order.id);
  192. if (code === 0) {
  193. state.pagination = pagination;
  194. await getOrderList();
  195. }
  196. }
  197. // #ifdef MP-WEIXIN
  198. // 小程序确认收货组件
  199. function mpConfirm(order) {
  200. if (!wx.openBusinessView) {
  201. sheep.$helper.toast(`请升级微信版本`);
  202. return;
  203. }
  204. wx.openBusinessView({
  205. businessType: 'weappOrderConfirm',
  206. extraData: {
  207. merchant_id: '1481069012',
  208. merchant_trade_no: order.wechat_extra_data.merchant_trade_no,
  209. transaction_id: order.wechat_extra_data.transaction_id,
  210. },
  211. success(response) {
  212. console.log('success:', response);
  213. if (response.errMsg === 'openBusinessView:ok') {
  214. if (response.extraData.status === 'success') {
  215. onConfirm(order, true);
  216. }
  217. }
  218. },
  219. fail(error) {
  220. console.log('error:', error);
  221. },
  222. complete(result) {
  223. console.log('result:', result);
  224. },
  225. });
  226. }
  227. // #endif
  228. // 查看物流
  229. async function onExpress(id) {
  230. sheep.$router.go('/pages/order/express/log', {
  231. id,
  232. });
  233. }
  234. // 取消订单
  235. async function onCancel(orderId) {
  236. uni.showModal({
  237. title: '提示',
  238. content: '确定要取消订单吗?',
  239. success: async function(res) {
  240. if (!res.confirm) {
  241. return;
  242. }
  243. const {
  244. code
  245. } = await OrderApi.cancelOrder(orderId);
  246. if (code === 0) {
  247. // 修改数据的状态
  248. let index = state.pagination.list.findIndex((order) => order.id === orderId);
  249. const orderInfo = state.pagination.list[index];
  250. orderInfo.status = 40;
  251. handleOrderButtons(orderInfo);
  252. }
  253. },
  254. });
  255. }
  256. // 删除订单
  257. function onDelete(orderId) {
  258. uni.showModal({
  259. title: '提示',
  260. content: '确定要删除订单吗?',
  261. success: async function(res) {
  262. if (res.confirm) {
  263. const {
  264. code
  265. } = await OrderApi.deleteOrder(orderId);
  266. if (code === 0) {
  267. // 删除数据
  268. let index = state.pagination.list.findIndex((order) => order.id === orderId);
  269. state.pagination.list.splice(index, 1);
  270. }
  271. }
  272. },
  273. });
  274. }
  275. // 获取订单列表
  276. async function getOrderList(page = 1, list_rows = 5) {
  277. state.loadStatus = 'loading';
  278. let {
  279. code,
  280. data
  281. } = await OrderApi.getOrderPage({
  282. pageNo: page,
  283. pageSize: list_rows,
  284. status: tabMaps[state.currentTab].value,
  285. commentStatus: tabMaps[state.currentTab].value === 30 ? false : null
  286. });
  287. if (code !== 0) {
  288. return;
  289. }
  290. let orderList = _.concat(state.pagination.list, data.list);
  291. data.list.forEach(order => handleOrderButtons(order));
  292. state.pagination.list = orderList
  293. state.pagination.total = data.total;
  294. state.pagination.last_page = Math.ceil(data.total / 5)
  295. if (state.pagination.current_page < state.pagination.last_page) {
  296. state.loadStatus = 'more';
  297. } else {
  298. state.loadStatus = 'noMore';
  299. }
  300. }
  301. onLoad(async (options) => {
  302. if (options.type) {
  303. state.currentTab = options.type;
  304. }
  305. await getOrderList();
  306. });
  307. // onShow(async () => {
  308. // await getOrderList();
  309. // });
  310. // 加载更多
  311. function loadMore() {
  312. if (state.loadStatus !== 'noMore') {
  313. state.pagination.current_page += 1
  314. getOrderList(state.pagination.current_page);
  315. }
  316. }
  317. // 上拉加载更多
  318. onReachBottom(() => {
  319. loadMore();
  320. });
  321. // 下拉刷新
  322. onPullDownRefresh(() => {
  323. state.pagination.list = []
  324. state.pagination.current_page = 1
  325. state.pagination.total = 1
  326. state.pagination.last_page = 1
  327. getOrderList();
  328. setTimeout(function() {
  329. uni.stopPullDownRefresh();
  330. }, 800);
  331. });
  332. </script>
  333. <style lang="scss" scoped>
  334. .score-img {
  335. width: 36rpx;
  336. height: 36rpx;
  337. margin: 0 4rpx;
  338. }
  339. .tool-btn {
  340. width: 160rpx;
  341. height: 60rpx;
  342. background: #f6f6f6;
  343. font-size: 26rpx;
  344. border-radius: 30rpx;
  345. margin-right: 10rpx;
  346. &:last-of-type {
  347. margin-right: 0;
  348. }
  349. }
  350. .delete-btn {
  351. width: 160rpx;
  352. height: 56rpx;
  353. color: #ff3000;
  354. background: #fee;
  355. border-radius: 28rpx;
  356. font-size: 26rpx;
  357. margin-right: 10rpx;
  358. line-height: normal;
  359. &:last-of-type {
  360. margin-right: 0;
  361. }
  362. }
  363. .apply-btn {
  364. width: 140rpx;
  365. height: 50rpx;
  366. border-radius: 25rpx;
  367. font-size: 24rpx;
  368. border: 2rpx solid #dcdcdc;
  369. line-height: normal;
  370. margin-left: 16rpx;
  371. }
  372. .swiper-box {
  373. flex: 1;
  374. .swiper-item {
  375. height: 100%;
  376. width: 100%;
  377. }
  378. }
  379. .order-list-card-box {
  380. .order-card-header {
  381. height: 80rpx;
  382. .order-no {
  383. font-size: 26rpx;
  384. font-weight: 500;
  385. }
  386. .order-state {}
  387. }
  388. .pay-box {
  389. .discounts-title {
  390. font-size: 24rpx;
  391. line-height: normal;
  392. color: #999999;
  393. }
  394. .discounts-money {
  395. font-size: 24rpx;
  396. line-height: normal;
  397. color: #999;
  398. font-family: OPPOSANS;
  399. }
  400. .pay-color {
  401. color: #333;
  402. }
  403. }
  404. .order-card-footer {
  405. height: 100rpx;
  406. .more-item-box {
  407. padding: 20rpx;
  408. .more-item {
  409. height: 60rpx;
  410. .title {
  411. font-size: 26rpx;
  412. }
  413. }
  414. }
  415. .more-btn {
  416. color: $dark-9;
  417. font-size: 24rpx;
  418. }
  419. .content {
  420. width: 154rpx;
  421. color: #333333;
  422. font-size: 26rpx;
  423. font-weight: 500;
  424. }
  425. }
  426. }
  427. :deep(.uni-tooltip-popup) {
  428. background: var(--ui-BG);
  429. }
  430. .warning-color {
  431. color: #faad14;
  432. }
  433. .danger-color {
  434. color: #ff3000;
  435. }
  436. .success-color {
  437. color: #52c41a;
  438. }
  439. .info-color {
  440. color: #999999;
  441. }
  442. </style>