list.vue 12 KB

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