list.vue 11 KB

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