list.vue 12 KB

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