list.vue 11 KB

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