list.vue 10 KB

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