list.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407
  1. <template>
  2. <view class="page_box">
  3. <view class="head_box">
  4. <!-- tab -->
  5. <view class="order-nav u-flex">
  6. <view class="nav-item u-flex-col u-flex-1 u-col-center" v-for="nav in orderState" :key="nav.id"
  7. @tap="onNav(nav.type)">
  8. <view class="item-title">{{ nav.title }}</view>
  9. <text class="nav-line" :class="{ 'line-active': orderType === nav.type }"></text>
  10. </view>
  11. </view>
  12. </view>
  13. <view class="content_box">
  14. <scroll-view scroll-y="true" enable-back-to-top @scrolltolower="loadMore" class="scroll-box">
  15. <!-- 订单列表 -->
  16. <view class="order-list" v-for="(order, orderIndex) in orderList" :key="order.id"
  17. @tap.stop="jump('/pages/order/detail', { id: order.id })">
  18. <view class="order-head u-flex u-row-between">
  19. <text class="no">订单编号:{{ order.order_sn }}</text>
  20. <text class="state">{{ order.status_name }}</text>
  21. </view>
  22. <view class="goods-order" v-for="goods in order.item" :key="goods.id">
  23. <view class="order-content">
  24. <shopro-mini-card :title="goods.goods_title" :image="goods.goods_image">
  25. <template #describe>
  26. <view class="order-sku u-ellipsis-1">
  27. <text class="order-num">数量:{{ goods.goods_num || 0 }};</text>
  28. {{ goods.goods_sku_text ? goods.goods_sku_text : '' }}
  29. </view>
  30. </template>
  31. <template #cardBottom>
  32. <view class="order-price-box u-flex ">
  33. <text class="order-price font-OPPOSANS">¥{{ goods.goods_price || 0 }}</text>
  34. <button class="u-reset-button status-btn"
  35. v-if="goods.status_name">{{ goods.status_name }}</button>
  36. </view>
  37. </template>
  38. </shopro-mini-card>
  39. </view>
  40. </view>
  41. <view class="order-bottom">
  42. <view class="all-msg u-flex font-OPPOSANS">
  43. 优惠:
  44. <text class="all-unit">¥</text>
  45. {{ order.discount_fee }} ,运费:
  46. <text class="all-unit">¥</text>
  47. {{ order.dispatch_amount }} ,{{ order.status <= 0 ? '需付款' : '实付款' }}:
  48. <view class="all-money font-OPPOSANS">{{ order.total_fee }}</view>
  49. </view>
  50. <!-- 按钮 -->
  51. <view class="btn-box u-flex" v-if="order.btns.length">
  52. <block v-for="orderBtn in order.btns" :key="orderBtn">
  53. <button v-if="orderBtn === 'cancel'" @tap.stop="onCancel(order.id, orderIndex)"
  54. class="u-reset-button obtn1">取消订单</button>
  55. <button v-if="orderBtn === 'pay'" @tap.stop="onPay(order.id)"
  56. class="u-reset-button obtn2">立即支付</button>
  57. <button v-if="orderBtn === 'groupon'"
  58. @tap.stop="jump('/pages/activity/groupon/detail', { id: order.ext_arr.groupon_id })"
  59. class="u-reset-button obtn2">
  60. 拼团详情
  61. </button>
  62. <button v-if="orderBtn === 'delete'" @tap.stop="onDelete(order.id, orderIndex)"
  63. class="u-reset-button obtn3">删除</button>
  64. <button v-if="orderBtn === 'express'" @tap.stop="onExpress(order.id, orderIndex)"
  65. class="u-reset-button obtn1">查看物流</button>
  66. </block>
  67. </view>
  68. </view>
  69. </view>
  70. <!-- 空白页 -->
  71. <shopro-empty v-if="isEmpty" :image="$IMG_URL + '/imgs/empty/empty_groupon.png'"
  72. tipText="暂无商品,还有更多好货等着你噢~"></shopro-empty>
  73. <!-- 更多 -->
  74. <u-loadmore v-show="orderList.length" height="80rpx" :status="loadStatus" icon-type="flower"
  75. color="#ccc" />
  76. </scroll-view>
  77. </view>
  78. </view>
  79. </template>
  80. <script>
  81. export default {
  82. components: {},
  83. data() {
  84. return {
  85. isEmpty: false,
  86. loadStatus: 'loadmore', //loadmore-加载前的状态,loading-加载中的状态,nomore-没有更多的状态
  87. currentPage: 1,
  88. lastPage: 1,
  89. orderType: 'all',
  90. orderList: [],
  91. orderState: [{
  92. id: 0,
  93. title: '全部',
  94. type: 'all'
  95. },
  96. {
  97. id: 1,
  98. title: '待付款',
  99. type: 'nopay'
  100. },
  101. {
  102. id: 2,
  103. title: '待发货',
  104. type: 'nosend'
  105. },
  106. {
  107. id: 3,
  108. title: '待收货',
  109. type: 'noget'
  110. },
  111. {
  112. id: 4,
  113. title: '待评价',
  114. type: 'nocomment'
  115. }
  116. ]
  117. };
  118. },
  119. onShow() {
  120. if (this.$Route.query.type) {
  121. this.orderType = this.$Route.query.type;
  122. }
  123. this.orderList = [];
  124. this.currentPage = 1;
  125. this.lastPage = 1;
  126. this.getOrderList();
  127. },
  128. methods: {
  129. jump(path, parmas) {
  130. this.$Router.push({
  131. path: path,
  132. query: parmas
  133. });
  134. },
  135. // tab切换
  136. onNav(id) {
  137. if (this.orderType !== id) {
  138. this.orderType = id;
  139. this.orderList = [];
  140. this.currentPage = 1;
  141. this.lastPage = 1;
  142. this.getOrderList();
  143. }
  144. },
  145. // 订单列表
  146. getOrderList() {
  147. let that = this;
  148. that.loadStatus = 'loading';
  149. that.$http('order.index', {
  150. type: that.orderType,
  151. page: that.currentPage
  152. }, '加载中...').then(res => {
  153. if (res.code === 1) {
  154. that.orderList = [...that.orderList, ...res.data.data];
  155. that.isEmpty = !that.orderList.length;
  156. that.lastPage = res.data.last_page;
  157. that.loadStatus = that.currentPage < res.data.last_page ? 'loadmore' : 'nomore';
  158. }
  159. });
  160. },
  161. // 加载更多
  162. loadMore() {
  163. if (this.currentPage < this.lastPage) {
  164. this.currentPage += 1;
  165. this.getOrderList();
  166. }
  167. },
  168. // 删除订单
  169. onDelete(orderId, orderIndex) {
  170. let that = this;
  171. uni.showModal({
  172. title: '删除订单',
  173. content: '确定要删除这个订单么?',
  174. cancelText: '取消',
  175. confirmText: '删除',
  176. success: res => {
  177. if (res.confirm) {
  178. that.$http('order.deleteOrder', {
  179. id: orderId
  180. },
  181. '删除中...'
  182. ).then(res => {
  183. if (res.code === 1) {
  184. that.$u.toast(res.msg);
  185. that.orderList.splice(orderIndex, 1);
  186. }
  187. });
  188. }
  189. }
  190. });
  191. },
  192. // 取消订单
  193. onCancel(id, orderIndex) {
  194. let that = this;
  195. that.$http('order.cancel', {
  196. id: id
  197. },
  198. '取消中...'
  199. ).then(res => {
  200. if (res.code === 1) {
  201. that.$u.toast(res.msg);
  202. this.orderList.splice(orderIndex, 1);
  203. }
  204. });
  205. },
  206. // 立即购买
  207. onPay(id) {
  208. uni.navigateTo({
  209. url: `/pages/order/payment/method?orderId=${id}&orderType=goods`
  210. });
  211. },
  212. // 查看物流
  213. onExpress(orderId) {
  214. let that = this;
  215. that.$http('order.expressList', {
  216. order_id: orderId
  217. }).then(res => {
  218. if (res.code === 1) {
  219. if (res.data.length == 1) {
  220. this.jump('/pages/order/express/express-detail', { orderId: orderId, expressId: res
  221. .data[0].id });
  222. } else if (res.data.length > 1) {
  223. this.jump('/pages/order/express/express-list', { orderId: orderId });
  224. } else {
  225. that.$u.toast('暂无包裹~');
  226. }
  227. }
  228. });
  229. }
  230. }
  231. };
  232. </script>
  233. <style lang="scss">
  234. .order-nav {
  235. background: #fff;
  236. height: 80rpx;
  237. .nav-item {
  238. flex: 1;
  239. .item-title {
  240. font-size: 30rpx;
  241. font-weight: 400;
  242. color: rgba(51, 51, 51, 1);
  243. line-height: 76rpx;
  244. }
  245. .nav-line {
  246. width: 100rpx;
  247. height: 4rpx;
  248. background: #fff;
  249. }
  250. .line-active {
  251. background: rgba(230, 184, 115, 1);
  252. }
  253. }
  254. }
  255. .order-list {
  256. background: #fff;
  257. margin: 20rpx 0;
  258. .order-bottom {
  259. padding-bottom: 20rpx;
  260. .btn-box {
  261. justify-content: flex-end;
  262. }
  263. .all-msg {
  264. font-size: 24rpx;
  265. color: #999;
  266. justify-content: flex-end;
  267. margin-bottom: 10rpx;
  268. padding: 0 30rpx;
  269. .all-unit {
  270. font-size: 20rpx;
  271. }
  272. .all-money {
  273. font-size: 26rpx;
  274. color: #333;
  275. font-weight: 500;
  276. &::before {
  277. content: '¥';
  278. font-size: 20rpx;
  279. }
  280. }
  281. }
  282. .obtn1 {
  283. width: 160rpx;
  284. line-height: 60rpx;
  285. background: rgba(238, 238, 238, 1);
  286. border-radius: 30rpx;
  287. font-size: 26rpx;
  288. font-weight: 400;
  289. color: rgba(51, 51, 51, 1);
  290. margin-right: 20rpx;
  291. padding: 0;
  292. }
  293. .obtn2 {
  294. width: 160rpx;
  295. line-height: 60rpx;
  296. background: linear-gradient(90deg, rgba(233, 180, 97, 1), rgba(238, 204, 137, 1));
  297. box-shadow: 0px 7rpx 6rpx 0px rgba(229, 138, 0, 0.22);
  298. border-radius: 30rpx;
  299. margin-right: 20rpx;
  300. font-size: 26rpx;
  301. font-weight: 400;
  302. color: #fff;
  303. padding: 0;
  304. }
  305. .obtn3 {
  306. background: #ffeeee;
  307. color: #e50808;
  308. width: 160rpx;
  309. line-height: 60rpx;
  310. border-radius: 30rpx;
  311. margin-right: 20rpx;
  312. font-size: 26rpx;
  313. font-weight: 400;
  314. padding: 0;
  315. }
  316. }
  317. .order-head {
  318. padding: 0 25rpx;
  319. height: 77rpx;
  320. border-bottom: 1rpx solid #dfdfdf;
  321. .no {
  322. font-size: 26rpx;
  323. color: #999;
  324. }
  325. .state {
  326. font-size: 26rpx;
  327. color: #a8700d;
  328. }
  329. }
  330. .goods-order {
  331. border-bottom: 1px solid rgba(223, 223, 223, 0.5);
  332. padding: 20rpx 20rpx 0;
  333. margin-bottom: 20rpx;
  334. .order-content {
  335. padding-bottom: 20rpx;
  336. .order-sku {
  337. font-size: 24rpx;
  338. font-weight: 400;
  339. color: rgba(153, 153, 153, 1);
  340. width: 450rpx;
  341. margin-bottom: 20rpx;
  342. .order-num {
  343. margin-right: 10rpx;
  344. }
  345. }
  346. .order-price-box {
  347. .status-btn {
  348. height: 32rpx;
  349. border: 1rpx solid rgba(207, 169, 114, 1);
  350. border-radius: 15rpx;
  351. font-size: 20rpx;
  352. font-weight: 400;
  353. color: rgba(168, 112, 13, 1);
  354. padding: 0 10rpx;
  355. margin-left: 20rpx;
  356. background: rgba(233, 183, 102, 0.16);
  357. }
  358. .order-price {
  359. font-size: 26rpx;
  360. font-weight: 600;
  361. color: rgba(51, 51, 51, 1);
  362. }
  363. }
  364. }
  365. }
  366. }
  367. </style>