index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="my-order">
  4. <view class="header bg-color">
  5. <view class="picTxt acea-row row-between-wrapper">
  6. <view class="text">
  7. <view class="name">{{$t(`订单信息`)}}</view>
  8. <view>{{$t(`消费订单`)}}:{{ orderData.order_count || 0 }} {{$t(`总消费`)}}:{{$t(`¥`)}}{{ orderData.sum_price || 0 }}</view>
  9. </view>
  10. <view class="pictrue">
  11. <image src="../static/orderTime.png"></image>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="nav acea-row row-around">
  16. <view class="item" :class="orderStatus == 0 ? 'on' : ''" @click="statusClick(0)">
  17. <view>{{$t(`待付款`)}}</view>
  18. <view class="num">{{ orderData.unpaid_count || 0 }}</view>
  19. </view>
  20. <view class="item" :class="orderStatus == 1 ? 'on' : ''" @click="statusClick(1)">
  21. <view>{{$t(`待发货`)}}</view>
  22. <view class="num">{{ orderData.unshipped_count || 0 }}</view>
  23. </view>
  24. <view class="item" :class="orderStatus == 2 ? 'on' : ''" @click="statusClick(2)">
  25. <view>{{$t(`待收货`)}}</view>
  26. <view class="num ">{{ orderData.received_count || 0 }}</view>
  27. </view>
  28. <view class="item" :class="orderStatus == 3 ? 'on' : ''" @click="statusClick(3)">
  29. <view>{{$t(`待评价`)}}</view>
  30. <view class="num">{{ orderData.evaluated_count || 0 }}</view>
  31. </view>
  32. <view class="item" :class="orderStatus == 4 ? 'on' : ''" @click="statusClick(4)">
  33. <view>{{$t(`已完成`)}}</view>
  34. <view class="num">{{ orderData.complete_count || 0 }}</view>
  35. </view>
  36. </view>
  37. <view class="list">
  38. <view class="item" v-for="(item, index) in orderList" :key="index">
  39. <view @click="goOrderDetails(item.order_id)">
  40. <view class="title acea-row row-between-wrapper">
  41. <view class="acea-row row-middle">
  42. <text class="sign cart-color acea-row row-center-wrapper"
  43. v-if="item.type == 2">{{$t(`砍价`)}}</text>
  44. <text class="sign cart-color acea-row row-center-wrapper"
  45. v-else-if="item.type == 3">{{$t(`拼团`)}}</text>
  46. <text class="sign cart-color acea-row row-center-wrapper"
  47. v-else-if="item.type == 1">{{$t(`秒杀`)}}</text>
  48. <text class="sign cart-color acea-row row-center-wrapper"
  49. v-else-if="item.type == 4">{{$t(`预售`)}}</text>
  50. <view>{{ item._add_time }}</view>
  51. </view>
  52. <view v-if="item._status._type == 9" class="font-color">{{$t(`线下付款,未支付`)}}</view>
  53. <view v-else-if="item._status._type == 0" class="font-color">{{$t(`待付款`)}}</view>
  54. <view v-else-if="item._status._type == 1 && item.shipping_type == 1" class="font-color">{{$t(`待发货`)}}
  55. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  56. </view>
  57. <view v-else-if="item._status._type == 1 && item.shipping_type == 2" class="font-color">{{$t(`待核销`)}}
  58. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  59. </view>
  60. <view v-else-if="item._status._type == 2" class="font-color">{{$t(`待收货`)}}
  61. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  62. </view>
  63. <view v-else-if="item._status._type == 3" class="font-color">{{$t(`待评价`)}}
  64. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  65. </view>
  66. <view v-else-if="item._status._type == 4" class="font-color">{{$t(`已完成`)}}
  67. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  68. </view>
  69. <view v-else-if="item._status._type == 5 && item.status == 0" class="font-color">{{$t(`未核销`)}}
  70. <text v-if="item.refund.length">,{{item.is_all_refund?$t(`退款中`):$t(`部分退款中`)}}</text>
  71. </view>
  72. <view v-else-if="item._status._type == -2" class="font-color">{{$t(`已退款`)}}
  73. </view>
  74. </view>
  75. <view class="item-info acea-row row-between row-top" v-for="(items, index) in item.cartInfo"
  76. :key="index">
  77. <view class="pictrue">
  78. <image :src="items.productInfo.image"></image>
  79. </view>
  80. <view class="text row-between">
  81. <text class="name line2">{{ items.productInfo.store_name }}</text>
  82. <view class="money">
  83. <view v-if="items.productInfo.attrInfo">{{$t(`¥`)}}{{ items.productInfo.attrInfo.price }}
  84. </view>
  85. <view v-else>{{$t(`¥`)}}{{ items.productInfo.price }}</view>
  86. <view>x{{ items.cart_num }}</view>
  87. <view v-if="items.refund_num && item._status._type != -2" class="return">
  88. {{ items.refund_num }}{{$t(`件退款中`)}}
  89. </view>
  90. </view>
  91. </view>
  92. </view>
  93. <view class="totalPrice">
  94. {{$t(`共`)}}{{ item.total_num || 0 }}{{$t(`件商品,总金额`)}}
  95. <text class="money">{{$t(`¥`)}}{{ item.pay_price }}</text>
  96. </view>
  97. </view>
  98. <view class="bottom acea-row row-right row-middle">
  99. <view class="bnt cancelBnt" v-if="item._status._type == 0 || item._status._type == 9"
  100. @click="cancelOrder(index, item.order_id)">{{$t(`取消订单`)}}</view>
  101. <view class="bnt bg-color" v-if="item._status._type == 0"
  102. @click="goPay(item.pay_price, item.order_id)">{{$t(`立即付款`)}}</view>
  103. <!-- <view class="bnt bg-color" v-else-if="item._status._type == 3"
  104. @click="goOrderDetails(item.order_id)">去评价</view> -->
  105. <!-- <view class="bnt bg-color"
  106. v-else-if="item.seckill_id < 1 && item.bargain_id < 1 && item.combination_id < 1 && item._status._type == 4"
  107. @click="goOrderDetails(item.order_id)">
  108. 再次购买
  109. </view> -->
  110. <view class="bnt cancelBnt" v-if="item._status._type == 4"
  111. @click="delOrder(item.order_id, index)">{{$t(`删除订单`)}}</view>
  112. <view class="bnt bg-color" @click="goOrderDetails(item.order_id)">{{$t(`查看详情`)}}</view>
  113. </view>
  114. </view>
  115. </view>
  116. <view class="loadingicon acea-row row-center-wrapper" v-if="orderList.length > 0">
  117. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  118. {{ loadTitle }}
  119. </view>
  120. <view v-if="orderList.length == 0">
  121. <emptyPage v-if="!loading" :title="$t(`暂无订单`)"></emptyPage>
  122. <view class="loadingicon acea-row row-center-wrapper">
  123. <text class="loading iconfont icon-jiazai" :hidden="loading == false"></text>
  124. </view>
  125. </view>
  126. </view>
  127. <!-- #ifndef MP -->
  128. <home></home>
  129. <!-- #endif -->
  130. <payment :payMode="payMode" :pay_close="pay_close" @onChangeFun="onChangeFun" :order_id="pay_order_id"
  131. :totalPrice="totalPrice"></payment>
  132. </view>
  133. </template>
  134. <script>
  135. import {
  136. getOrderList,
  137. orderData,
  138. orderCancel,
  139. orderDel,
  140. orderPay
  141. } from '@/api/order.js';
  142. import {
  143. getUserInfo
  144. } from '@/api/user.js';
  145. import {
  146. openOrderSubscribe
  147. } from '@/utils/SubscribeMessage.js';
  148. import home from '@/components/home';
  149. import payment from '@/components/payment';
  150. import {
  151. toLogin
  152. } from '@/libs/login.js';
  153. import {
  154. mapGetters
  155. } from 'vuex';
  156. // #ifdef MP
  157. import authorize from '@/components/Authorize';
  158. // #endif
  159. import emptyPage from '@/components/emptyPage.vue';
  160. import colors from '@/mixins/color.js';
  161. export default {
  162. components: {
  163. payment,
  164. home,
  165. emptyPage,
  166. // #ifdef MP
  167. authorize
  168. // #endif
  169. },
  170. mixins: [colors],
  171. data() {
  172. return {
  173. loading: false, //是否加载中
  174. loadend: false, //是否加载完毕
  175. loadTitle: this.$t(`加载更多`), //提示语
  176. orderList: [], //订单数组
  177. orderData: {}, //订单详细统计
  178. orderStatus: 0, //订单状态
  179. page: 1,
  180. limit: 20,
  181. payMode: [{
  182. name: this.$t(`微信支付`),
  183. icon: 'icon-weixinzhifu',
  184. value: 'weixin',
  185. title: this.$t(`使用微信快捷支付`),
  186. payStatus: true
  187. },
  188. {
  189. name: this.$t(`支付宝支付`),
  190. icon: 'icon-zhifubao',
  191. value: 'alipay',
  192. title: this.$t(`使用支付宝支付`),
  193. payStatus: true
  194. },
  195. {
  196. name: this.$t(`余额支付`),
  197. icon: 'icon-yuezhifu',
  198. value: 'yue',
  199. title: this.$t(`可用余额`),
  200. number: 0,
  201. payStatus: true
  202. }, {
  203. "name": this.$t(`好友代付`),
  204. "icon": "icon-haoyoudaizhifu",
  205. value: 'friend',
  206. title: this.$t(`找微信好友支付`),
  207. payStatus: 1,
  208. }
  209. ],
  210. pay_close: false,
  211. pay_order_id: '',
  212. totalPrice: '0',
  213. isAuto: false, //没有授权的不会自动授权
  214. isShowAuth: false //是否隐藏授权
  215. };
  216. },
  217. computed: mapGetters(['isLogin']),
  218. onShow() {
  219. if (this.isLogin) {
  220. this.page = 1;
  221. this.orderList = []
  222. this.loadend = false;
  223. this.onLoadFun();
  224. this.getOrderList();
  225. } else {
  226. toLogin();
  227. }
  228. },
  229. methods: {
  230. onLoadFun() {
  231. this.getOrderData();
  232. this.getUserInfo();
  233. },
  234. // 授权关闭
  235. authColse: function(e) {
  236. this.isShowAuth = e;
  237. },
  238. /**
  239. * 事件回调
  240. *
  241. */
  242. onChangeFun: function(e) {
  243. let opt = e;
  244. let action = opt.action || null;
  245. let value = opt.value != undefined ? opt.value : null;
  246. action && this[action] && this[action](value);
  247. },
  248. /**
  249. * 获取用户信息
  250. *
  251. */
  252. getUserInfo: function() {
  253. let that = this;
  254. getUserInfo().then(res => {
  255. that.payMode[2].number = res.data.now_money;
  256. that.$set(that, 'payMode', that.payMode);
  257. });
  258. },
  259. /**
  260. * 关闭支付组件
  261. *
  262. */
  263. payClose: function() {
  264. this.pay_close = false;
  265. },
  266. /**
  267. * 生命周期函数--监听页面加载
  268. */
  269. onLoad: function(options) {
  270. if (options.status) this.orderStatus = options.status;
  271. },
  272. /**
  273. * 获取订单统计数据
  274. *
  275. */
  276. getOrderData: function() {
  277. let that = this;
  278. orderData().then(res => {
  279. that.$set(that, 'orderData', res.data);
  280. that.payMode.map(item => {
  281. if (item.value == 'weixin') {
  282. item.payStatus = res.data.pay_weixin_open ? true : false;
  283. }
  284. if (item.value == 'alipay') {
  285. item.payStatus = res.data.ali_pay_status ? true : false;
  286. }
  287. if (item.value == 'yue') {
  288. item.payStatus = res.data.yue_pay_status == 1 ? true : false;
  289. }
  290. if (item.value == 'friend') {
  291. item.payStatus = res.data.friend_pay_status == 1 ? true : false;
  292. }
  293. });
  294. //#ifdef MP
  295. this.payMode[1].payStatus = false;
  296. //#endif
  297. });
  298. },
  299. /**
  300. * 取消订单
  301. *
  302. */
  303. cancelOrder: function(index, order_id) {
  304. let that = this;
  305. if (!order_id)
  306. return that.$util.Tips({
  307. title: that.$t(`缺少订单号无法取消订单`)
  308. });
  309. orderCancel(order_id)
  310. .then(res => {
  311. return that.$util.Tips({
  312. title: res.msg,
  313. icon: 'success'
  314. },
  315. function() {
  316. that.orderList.splice(index, 1);
  317. that.$set(that, 'orderList', that.orderList);
  318. that.$set(that.orderData, 'unpaid_count', that.orderData.unpaid_count - 1);
  319. that.getOrderData();
  320. }
  321. );
  322. })
  323. .catch(err => {
  324. return that.$util.Tips({
  325. title: err
  326. });
  327. });
  328. },
  329. /**
  330. * 打开支付组件
  331. *
  332. */
  333. goPay: function(pay_price, order_id) {
  334. this.$set(this, 'pay_close', true);
  335. this.$set(this, 'pay_order_id', order_id);
  336. this.$set(this, 'totalPrice', pay_price);
  337. },
  338. /**
  339. * 支付成功回调
  340. *
  341. */
  342. pay_complete: function() {
  343. this.loadend = false;
  344. this.page = 1;
  345. this.$set(this, 'orderList', []);
  346. this.pay_close = false;
  347. uni.navigateTo({
  348. url: '/pages/goods/order_pay_status/index?order_id=' + this.pay_order_id +
  349. '&msg='+this.$t(`支付成功`)+'&type=3&totalPrice=' + this.totalPrice
  350. })
  351. this.pay_order_id = '';
  352. this.getOrderData();
  353. this.getOrderList();
  354. },
  355. /**
  356. * 支付失败回调
  357. *
  358. */
  359. pay_fail: function() {
  360. this.pay_close = false;
  361. this.pay_order_id = '';
  362. },
  363. /**
  364. * 去订单详情
  365. */
  366. goOrderDetails: function(order_id) {
  367. let that = this;
  368. if (!order_id)
  369. return that.$util.Tips({
  370. title: that.$t(`缺少订单号无法查看订单详情`)
  371. });
  372. // #ifdef MP
  373. uni.showLoading({
  374. title: that.$t(`正在加载中`)
  375. });
  376. openOrderSubscribe()
  377. .then(() => {
  378. uni.hideLoading();
  379. uni.navigateTo({
  380. url: '/pages/goods/order_details/index?order_id=' + order_id
  381. })
  382. })
  383. .catch(err => {
  384. uni.hideLoading();
  385. });
  386. // #endif
  387. // #ifndef MP
  388. uni.navigateTo({
  389. url: '/pages/goods/order_details/index?order_id=' + order_id
  390. });
  391. // #endif
  392. },
  393. /**
  394. * 切换类型
  395. */
  396. statusClick: function(status) {
  397. if (status == this.orderStatus) return;
  398. this.orderStatus = status;
  399. this.loadend = false;
  400. this.page = 1;
  401. this.$set(this, 'orderList', []);
  402. this.getOrderList();
  403. },
  404. /**
  405. * 获取订单列表
  406. */
  407. getOrderList: function() {
  408. let that = this;
  409. if (that.loadend) return;
  410. if (that.loading) return;
  411. that.loading = true;
  412. that.loadTitle = that.$t(`加载更多`);
  413. getOrderList({
  414. type: that.orderStatus,
  415. page: that.page,
  416. limit: that.limit
  417. })
  418. .then(res => {
  419. let list = res.data || [];
  420. let loadend = list.length < that.limit;
  421. that.orderList = that.$util.SplitArray(list, that.orderList);
  422. that.$set(that, 'orderList', that.orderList);
  423. that.loadend = loadend;
  424. that.loading = false;
  425. that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  426. that.page = that.page + 1;
  427. })
  428. .catch(err => {
  429. that.loading = false;
  430. that.loadTitle = that.$t(`加载更多`);
  431. });
  432. },
  433. /**
  434. * 删除订单
  435. */
  436. delOrder: function(order_id, index) {
  437. let that = this;
  438. uni.showModal({
  439. title: that.$t(`删除订单`),
  440. content: that.$t(`确定删除该订单`),
  441. success: function(res) {
  442. if (res.confirm) {
  443. orderDel(order_id)
  444. .then(res => {
  445. that.orderList.splice(index, 1);
  446. that.$set(that, 'orderList', that.orderList);
  447. that.$set(that.orderData, 'unpaid_count', that.orderData
  448. .unpaid_count - 1);
  449. that.getOrderData();
  450. return that.$util.Tips({
  451. title: that.$t(`删除成功`),
  452. icon: 'success'
  453. });
  454. })
  455. .catch(err => {
  456. return that.$util.Tips({
  457. title: err
  458. });
  459. });
  460. } else if (res.cancel) {
  461. return that.$util.Tips({
  462. title: that.$t(`已取消`)
  463. });
  464. }
  465. }
  466. });
  467. }
  468. },
  469. onReachBottom: function() {
  470. this.getOrderList();
  471. }
  472. };
  473. </script>
  474. <style scoped lang="scss">
  475. .my-order .header {
  476. height: 260rpx;
  477. padding: 0 30rpx;
  478. }
  479. .my-order .header .picTxt {
  480. height: 190rpx;
  481. }
  482. .my-order .header .picTxt .text {
  483. color: rgba(255, 255, 255, 0.8);
  484. font-size: 26rpx;
  485. font-family: 'Guildford Pro';
  486. }
  487. .my-order .header .picTxt .text .name {
  488. font-size: 34rpx;
  489. font-weight: bold;
  490. color: #fff;
  491. margin-bottom: 20rpx;
  492. }
  493. .my-order .header .picTxt .pictrue {
  494. width: 122rpx;
  495. height: 109rpx;
  496. }
  497. .my-order .header .picTxt .pictrue image {
  498. width: 100%;
  499. height: 100%;
  500. }
  501. .my-order .nav {
  502. background-color: #fff;
  503. width: 690rpx;
  504. height: 140rpx;
  505. border-radius: 6rpx;
  506. margin: -73rpx auto 0 auto;
  507. }
  508. .my-order .nav .item {
  509. text-align: center;
  510. font-size: 26rpx;
  511. color: #282828;
  512. padding: 27rpx 0;
  513. border-bottom: 5rpx solid transparent;
  514. }
  515. .my-order .nav .item.on {
  516. /* #ifdef H5 || MP */
  517. font-weight: bold;
  518. /* #endif */
  519. /* #ifdef APP-PLUS */
  520. color: #000;
  521. /* #endif */
  522. border-color: var(--view-theme);
  523. }
  524. .my-order .nav .item .num {
  525. margin-top: 18rpx;
  526. }
  527. .my-order .list {
  528. width: 690rpx;
  529. margin: 14rpx auto 0 auto;
  530. }
  531. .my-order .list .item {
  532. background-color: #fff;
  533. border-radius: 6rpx;
  534. margin-bottom: 14rpx;
  535. }
  536. .my-order .list .item .title {
  537. height: 84rpx;
  538. padding: 0 30rpx;
  539. border-bottom: 1rpx solid #eee;
  540. font-size: 28rpx;
  541. color: #282828;
  542. }
  543. .my-order .list .item .title .sign {
  544. font-size: 24rpx;
  545. padding: 0 7rpx;
  546. height: 36rpx;
  547. margin-right: 15rpx;
  548. }
  549. .my-order .list .item .item-info {
  550. padding: 0 30rpx;
  551. margin-top: 22rpx;
  552. }
  553. .my-order .list .item .item-info .pictrue {
  554. width: 120rpx;
  555. height: 120rpx;
  556. }
  557. .my-order .list .item .item-info .pictrue image {
  558. width: 100%;
  559. height: 100%;
  560. border-radius: 6rpx;
  561. }
  562. .my-order .list .item .item-info .text {
  563. width: 486rpx;
  564. font-size: 28rpx;
  565. color: #999;
  566. margin-top: 6rpx;
  567. display: flex;
  568. }
  569. .my-order .list .item .item-info .text .name {
  570. width: 306rpx;
  571. color: #282828;
  572. height: 78rpx;
  573. }
  574. .my-order .list .item .item-info .text .money {
  575. text-align: right;
  576. flex: 1;
  577. }
  578. .my-order .list .item .totalPrice {
  579. font-size: 26rpx;
  580. color: #282828;
  581. text-align: right;
  582. margin: 27rpx 0 0 30rpx;
  583. padding: 0 30rpx 30rpx 0;
  584. border-bottom: 1rpx solid #eee;
  585. }
  586. .my-order .list .item .totalPrice .money {
  587. font-size: 28rpx;
  588. font-weight: bold;
  589. color: var(--view-priceColor);
  590. }
  591. .my-order .list .item .bottom {
  592. height: 107rpx;
  593. padding: 0 30rpx;
  594. }
  595. .my-order .list .item .bottom .bnt {
  596. width: 176rpx;
  597. height: 60rpx;
  598. text-align: center;
  599. line-height: 60rpx;
  600. color: #fff;
  601. border-radius: 50rpx;
  602. font-size: 27rpx;
  603. }
  604. .my-order .list .item .bottom .bnt.cancelBnt {
  605. border: 1rpx solid #ddd;
  606. color: #aaa;
  607. }
  608. .my-order .list .item .bottom .bnt~.bnt {
  609. margin-left: 17rpx;
  610. }
  611. .noCart {
  612. margin-top: 171rpx;
  613. padding-top: 0.1rpx;
  614. }
  615. .noCart .pictrue {
  616. width: 414rpx;
  617. height: 336rpx;
  618. margin: 78rpx auto 56rpx auto;
  619. }
  620. .noCart .pictrue image {
  621. width: 100%;
  622. height: 100%;
  623. }
  624. .my-order .list .item .item-info .text .money .return {
  625. // color: var(--view-priceColor);
  626. margin-top: 10rpx;
  627. font-size: 24rpx;
  628. }
  629. </style>