list.vue 9.3 KB

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