list.vue 12 KB

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