index.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798
  1. <template>
  2. <view :style="colorStyle">
  3. <view class="my-order">
  4. <view class="header-group">
  5. <view class="tabs index_tabs">
  6. <u-tabs :is-scroll="true" :list="navigationList" @change="statusClick()" lineColor="#B22338" :current="tabIndex"
  7. :inactiveStyle="{ color: '#999999' }" :activeStyle="{ color: '#B22338', fontWeight: 'bold' }"
  8. keyName="title"></u-tabs>
  9. </view>
  10. <view :style="{ height: height }" >
  11. <swiper :style="{ height: height }" :current="tabIndex" @change="swiperChange">
  12. <swiper-item v-for="(tab,index) in navigationList" :key="index">
  13. <mescroll-item ref="MescrollItem" :i="index" :index="tabIndex" :tabs="navigationList" :height="height">
  14. </mescroll-item>
  15. </swiper-item>
  16. </swiper>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import MescrollItem from "./module/mescrollUni-item.vue";
  24. import {
  25. getUserOrderPage,
  26. postUserOrderCancel,
  27. postUserOrderRefund
  28. } from '@/api/home.js';
  29. import {
  30. getOrderList,
  31. orderData,
  32. orderCancel,
  33. orderDel,
  34. orderPay
  35. } from '@/api/order.js';
  36. import {
  37. getUserInfo
  38. } from '@/api/user.js';
  39. import {
  40. openOrderSubscribe
  41. } from '@/utils/SubscribeMessage.js';
  42. import home from '@/components/home';
  43. import payment from '@/components/payment';
  44. import {
  45. toLogin
  46. } from '@/libs/login.js';
  47. import {
  48. mapGetters
  49. } from 'vuex';
  50. // #ifdef MP
  51. import authorize from '@/components/Authorize';
  52. // #endif
  53. import emptyPage from '@/components/emptyPage.vue';
  54. import colors from '@/mixins/color.js';
  55. export default {
  56. components: {
  57. MescrollItem,
  58. payment,
  59. home,
  60. emptyPage,
  61. // #ifdef MP
  62. authorize
  63. // #endif
  64. },
  65. mixins: [colors],
  66. data () {
  67. return {
  68. tabIndex:0,
  69. height:'',
  70. navigationList: [{
  71. title: '全部',
  72. id: 0
  73. }
  74. ,
  75. {
  76. title: '待发货',
  77. id: 1
  78. },
  79. {
  80. title: '已发货',
  81. id: 2
  82. },
  83. {
  84. title: '已完成',
  85. id: 3
  86. }
  87. ],
  88. loading: false, //是否加载中
  89. loadend: false, //是否加载完毕
  90. loadTitle: this.$t(`加载更多`), //提示语
  91. orderList: [], //订单数组
  92. orderData: {}, //订单详细统计
  93. orderStatus: 0, //订单状态
  94. page: 1,
  95. limit: 20,
  96. payMode: [{
  97. name: this.$t(`微信支付`),
  98. icon: 'icon-weixinzhifu',
  99. value: 'weixin',
  100. title: this.$t(`使用微信快捷支付`),
  101. payStatus: true
  102. },
  103. // {
  104. // name: this.$t(`支付宝支付`),
  105. // icon: 'icon-zhifubao',
  106. // value: 'alipay',
  107. // title: this.$t(`使用支付宝支付`),
  108. // payStatus: true
  109. // },
  110. // {
  111. // name: this.$t(`余额支付`),
  112. // icon: 'icon-yuezhifu',
  113. // value: 'yue',
  114. // title: this.$t(`可用余额`),
  115. // number: 0,
  116. // payStatus: true
  117. // }, {
  118. // "name": this.$t(`好友代付`),
  119. // "icon": "icon-haoyoudaizhifu",
  120. // value: 'friend',
  121. // title: this.$t(`找微信好友支付`),
  122. // payStatus: 1,
  123. // }
  124. ],
  125. pay_close: false,
  126. pay_order_id: '',
  127. pay_orderId: '',
  128. totalPrice: '0',
  129. isAuto: false, //没有授权的不会自动授权
  130. isShowAuth: false //是否隐藏授权
  131. };
  132. },
  133. computed: mapGetters(['isLogin']),
  134. onShow () {
  135. let sysInfo = uni.getSystemInfoSync()
  136. this.height= sysInfo.windowHeight -(sysInfo.screenWidth/750) * (100) +'px';
  137. console.log(this.height)
  138. if (this.isLogin) {
  139. this.page = 1;
  140. this.orderList = []
  141. this.loadend = false;
  142. this.onLoadFun();
  143. this.getOrderList();
  144. } else {
  145. toLogin();
  146. }
  147. },
  148. methods: {
  149. onLoadFun () {
  150. this.getOrderData();
  151. this.getUserInfo();
  152. },
  153. // 授权关闭
  154. authColse: function (e) {
  155. this.isShowAuth = e;
  156. },
  157. /**
  158. * 事件回调
  159. *
  160. */
  161. onChangeFun: function (e) {
  162. let opt = e;
  163. let action = opt.action || null;
  164. let value = opt.value != undefined ? opt.value : null;
  165. action && this[action] && this[action](value);
  166. },
  167. /**
  168. * 获取用户信息
  169. *
  170. */
  171. getUserInfo: function () {
  172. let that = this;
  173. getUserInfo().then(res => {
  174. that.payMode[2].number = res.data.now_money;
  175. that.$set(that, 'payMode', that.payMode);
  176. });
  177. },
  178. /**
  179. * 关闭支付组件
  180. *
  181. */
  182. payClose: function () {
  183. this.pay_close = false;
  184. },
  185. /**
  186. * 生命周期函数--监听页面加载
  187. */
  188. onLoad: function (options) {
  189. if (options.status) this.orderStatus = options.status;
  190. },
  191. /**
  192. * 获取订单统计数据
  193. *
  194. */
  195. getOrderData: function () {
  196. let that = this;
  197. // orderData().then(res => {
  198. // that.$set(that, 'orderData', res.data);
  199. // that.payMode.map(item => {
  200. // if (item.value == 'weixin') {
  201. // item.payStatus = res.data.pay_weixin_open ? true : false;
  202. // }
  203. // if (item.value == 'alipay') {
  204. // item.payStatus = res.data.ali_pay_status ? true : false;
  205. // }
  206. // if (item.value == 'yue') {
  207. // item.payStatus = res.data.yue_pay_status == 1 ? true : false;
  208. // }
  209. // if (item.value == 'friend') {
  210. // item.payStatus = res.data.friend_pay_status == 1 ? true : false;
  211. // }
  212. // });
  213. // //#ifdef MP
  214. // this.payMode[1].payStatus = false;
  215. // //#endif
  216. // });
  217. },
  218. /**
  219. * 取消订单
  220. *
  221. */
  222. cancelOrder: function (index, order_id) {
  223. let that = this;
  224. if (!order_id)
  225. return that.$util.Tips({
  226. title: that.$t(`缺少订单号无法取消订单`)
  227. });
  228. uni.showModal({
  229. title: that.$t(`取消订单`),
  230. content: that.$t(`确定取消该订单`),
  231. success: function (res) {
  232. if (res.confirm) {
  233. postUserOrderCancel({ id: order_id })
  234. .then(res => {
  235. return that.$util.Tips({
  236. title: res.msg,
  237. icon: 'success'
  238. },
  239. function () {
  240. that.orderList.splice(index, 1);
  241. that.$set(that, 'orderList', that.orderList);
  242. // that.$set(that.orderData, 'unpaid_count', that.orderData.unpaid_count - 1);
  243. // that.getOrderList()
  244. }
  245. );
  246. })
  247. .catch(err => {
  248. return that.$util.Tips({
  249. title: err
  250. });
  251. });
  252. } else if (res.cancel) {
  253. return that.$util.Tips({
  254. title: that.$t(`已取消`)
  255. });
  256. }
  257. }
  258. });
  259. },
  260. refundOrder: function (index, order_id) {
  261. let that = this;
  262. if (!order_id)
  263. return that.$util.Tips({
  264. title: that.$t(`缺少订单号无法申请退款订单`)
  265. });
  266. uni.showModal({
  267. title: that.$t(`申请退款`),
  268. content: that.$t(`确定申请退款该订单`),
  269. success: function (res) {
  270. if (res.confirm) {
  271. postUserOrderRefund({ id: order_id })
  272. .then(res => {
  273. return that.$util.Tips({
  274. title: res.msg,
  275. icon: 'success'
  276. },
  277. function () {
  278. that.orderList.splice(index, 1);
  279. that.$set(that, 'orderList', that.orderList);
  280. // that.$set(that.orderData, 'unpaid_count', that.orderData.unpaid_count - 1);
  281. // that.getOrderData();
  282. // this.getOrderList()
  283. }
  284. );
  285. })
  286. .catch(err => {
  287. return that.$util.Tips({
  288. title: err
  289. });
  290. });
  291. } else if (res.cancel) {
  292. return that.$util.Tips({
  293. title: that.$t(`已取消`)
  294. });
  295. }
  296. }
  297. });
  298. },
  299. /**
  300. * 打开支付组件
  301. *
  302. */
  303. goPay: function (item, order_no) {
  304. this.$set(this, 'pay_close', true);
  305. this.$set(this, 'pay_order_id', order_no);
  306. this.$set(this, 'pay_orderId', item.id);
  307. this.$set(this, 'totalPrice', item.totalFee);
  308. },
  309. /**
  310. * 支付成功回调
  311. *
  312. */
  313. pay_complete: function () {
  314. this.loadend = false;
  315. this.page = 1;
  316. this.$set(this, 'orderList', []);
  317. this.pay_close = false;
  318. uni.navigateTo({
  319. url: '/pages/goods/order_pay_status/index?order_id=' + this.pay_orderId +
  320. '&msg=' + this.$t(`支付成功`) + '&type=3&totalPrice=' + this.totalPrice
  321. })
  322. this.pay_order_id = '';
  323. this.pay_orderId = '';
  324. this.getOrderData();
  325. this.getOrderList();
  326. },
  327. /**
  328. * 支付失败回调
  329. *
  330. */
  331. pay_fail: function () {
  332. this.pay_close = false;
  333. this.pay_order_id = '';
  334. },
  335. /**
  336. * 去订单详情
  337. */
  338. goOrderDetails: function (order_id, order) {
  339. uni.navigateTo({
  340. url: '/pages/groupbuying/groupbuying_order_details/index?order_id= + order_id'
  341. });
  342. // let that = this;
  343. // if (!order_id)
  344. // return that.$util.Tips({
  345. // title: that.$t(`缺少订单号无法查看订单详情`)
  346. // });
  347. // uni.showLoading({
  348. // title: that.$t(`正在加载中`)
  349. // });
  350. // openOrderSubscribe()
  351. // .then(() => {
  352. // uni.hideLoading();
  353. // uni.navigateTo({
  354. // url: '/pages/goods/order_details/index?order_id=' + order_id
  355. // // +'&order='+JSON.stringify(order)
  356. // // +'&goods='+encodeURIComponent(JSON.stringify(order.orderGoods))
  357. // })
  358. // })
  359. // .catch(err => {
  360. // uni.hideLoading();
  361. // });
  362. },
  363. /**
  364. * 切换类型
  365. */
  366. statusClick: function (e) {
  367. this.tabIndex = e.index
  368. },
  369. swiperChange(e) {
  370. this.tabIndex = e.detail.current
  371. },
  372. /**
  373. * 获取订单列表
  374. */
  375. getOrderList: function () {
  376. // let that = this;
  377. // if (that.loadend) return;
  378. // if (that.loading) return;
  379. // that.loading = true;
  380. // that.loadTitle = that.$t(`加载更多`);
  381. // getUserOrderPage({
  382. // userId: this.$store.state.app.uid,
  383. // current: that.page,
  384. // size: that.limit,
  385. // payFlag: this.orderStatus
  386. // })
  387. // .then(res => {
  388. // let list = res.data || [];
  389. // let loadend = list.length < that.limit;
  390. // that.orderList = that.$util.SplitArray(list, that.orderList);
  391. // that.$set(that, 'orderList', that.orderList);
  392. // that.loadend = loadend;
  393. // that.loading = false;
  394. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  395. // that.page = that.page + 1;
  396. // })
  397. // .catch(err => {
  398. // that.loading = false;
  399. // that.loadTitle = that.$t(`加载更多`);
  400. // });
  401. },
  402. /**
  403. * 删除订单
  404. */
  405. delOrder: function (order_id, index) {
  406. let that = this;
  407. uni.showModal({
  408. title: that.$t(`删除订单`),
  409. content: that.$t(`确定删除该订单`),
  410. success: function (res) {
  411. if (res.confirm) {
  412. orderDel(order_id)
  413. .then(res => {
  414. that.orderList.splice(index, 1);
  415. that.$set(that, 'orderList', that.orderList);
  416. that.$set(that.orderData, 'unpaid_count', that.orderData
  417. .unpaid_count - 1);
  418. that.getOrderData();
  419. return that.$util.Tips({
  420. title: that.$t(`删除成功`),
  421. icon: 'success'
  422. });
  423. })
  424. .catch(err => {
  425. return that.$util.Tips({
  426. title: err
  427. });
  428. });
  429. } else if (res.cancel) {
  430. return that.$util.Tips({
  431. title: that.$t(`已取消`)
  432. });
  433. }
  434. }
  435. });
  436. }
  437. },
  438. onReachBottom: function () {
  439. this.getOrderList();
  440. }
  441. };
  442. </script>
  443. <style scoped lang="scss">
  444. .bord{
  445. border: 1px solid red;
  446. }
  447. .my-order .nav {
  448. background-color: #F9F9F9;
  449. width: 100%;
  450. // height: 140rpx;
  451. }
  452. .my-order .nav .item {
  453. text-align: center;
  454. font-size: 26rpx;
  455. color: #282828;
  456. padding: 27rpx 0;
  457. border-bottom: 5rpx solid transparent;
  458. }
  459. .my-order .nav .item.on {
  460. /* #ifdef H5 || MP */
  461. font-weight: bold;
  462. /* #endif */
  463. /* #ifdef APP-PLUS */
  464. color: #000;
  465. /* #endif */
  466. border-color: var(--view-theme);
  467. }
  468. .my-order .nav .item .num {
  469. margin-top: 18rpx;
  470. }
  471. .list {
  472. width: 100%;
  473. background: white;
  474. margin: 14rpx auto 0 auto;
  475. padding-bottom: 30rpx;
  476. }
  477. .noCart {
  478. margin-top: 171rpx;
  479. padding-top: 0.1rpx;
  480. }
  481. .noCart .pictrue {
  482. width: 414rpx;
  483. height: 336rpx;
  484. margin: 78rpx auto 56rpx auto;
  485. }
  486. .noCart .pictrue image {
  487. width: 100%;
  488. height: 100%;
  489. }
  490. .my-order .list .item .item-info .text .money .return {
  491. // color: var(--view-priceColor);
  492. margin-top: 10rpx;
  493. font-size: 24rpx;
  494. }
  495. .myclient_list {
  496. padding: 30rpx;
  497. background: #FFFFFF;
  498. .myclient_list_name {
  499. margin-bottom: 15rpx;
  500. min-height: 44rpx;
  501. font-size: 28rpx;
  502. font-weight: 500;
  503. color: #111111;
  504. line-height: 44rpx;
  505. display: flex;
  506. .nv {
  507. flex-grow: 1;
  508. }
  509. .status {
  510. width: 300rpx;
  511. text-align: right;
  512. margin-left: 30rpx;
  513. color: #75BE00;
  514. }
  515. }
  516. .myclient_list_content {
  517. .subtitle {
  518. height: 44rpx;
  519. margin: 20rpx 0;
  520. font-size: 28rpx;
  521. font-weight: 400;
  522. color: #666666;
  523. line-height: 44rpx;
  524. }
  525. image {
  526. width: 24rpx;
  527. height: 24rpx;
  528. margin-right: 20rpx;
  529. }
  530. .phone {
  531. margin-bottom: 15rpx;
  532. height: 44rpx;
  533. font-size: 24rpx;
  534. font-weight: 400;
  535. color: #999999;
  536. line-height: 44rpx;
  537. }
  538. .time {
  539. height: 44rpx;
  540. font-size: 24rpx;
  541. font-weight: 400;
  542. color: #999999;
  543. line-height: 44rpx;
  544. }
  545. }
  546. }
  547. .all-products-body {
  548. background: white;
  549. .all-products-item {
  550. display: flex;
  551. margin-bottom: 20rpx;
  552. image {
  553. width: 128rpx;
  554. height: 128rpx;
  555. margin-right: 20rpx;
  556. border: 2rpx solid #FFFFFF;
  557. }
  558. .all-products-item-content {
  559. flex-grow: 1;
  560. display: flex;
  561. flex-direction: column;
  562. .all-products-item-content-t {
  563. flex: 1;
  564. font-size: 24rpx;
  565. font-weight: 400;
  566. color: #333333;
  567. line-height: 40rpx;
  568. }
  569. .all-products-item-content-b {
  570. flex: 1;
  571. font-size: 28rpx;
  572. font-weight: 500;
  573. line-height: 80rpx;
  574. display: flex;
  575. justify-content: space-between;
  576. .red {
  577. display: block;
  578. font-size: 28rpx;
  579. font-weight: 500;
  580. color: #999999 !important;
  581. margin-right: 10rpx;
  582. }
  583. .line-thr {
  584. display: block;
  585. font-size: 28rpx;
  586. font-weight: 400;
  587. color: #999999;
  588. text-decoration: line-through;
  589. }
  590. .count {
  591. font-size: 24rpx;
  592. font-weight: 400;
  593. color: #999999;
  594. margin-right: 30rpx;
  595. }
  596. }
  597. }
  598. }
  599. }
  600. .a-t {
  601. padding: 0 30rpx;
  602. display: flex;
  603. justify-content: space-between;
  604. height: 44rpx;
  605. margin-bottom: 20rpx;
  606. }
  607. .a-m {
  608. padding: 0 30rpx;
  609. .am1 {
  610. display: flex;
  611. justify-content: space-between;
  612. margin-bottom: 20rpx;
  613. .am1-1 {
  614. height: 40rpx;
  615. font-size: 28rpx;
  616. font-weight: 400;
  617. color: #111111;
  618. line-height: 40rpx;
  619. }
  620. .am1-2 {
  621. height: 36rpx;
  622. font-size: 20rpx;
  623. font-weight: 400;
  624. color: #666666;
  625. line-height: 36rpx;
  626. image {
  627. margin-left: 30rpx;
  628. vertical-align: middle;
  629. height: 34rpx;
  630. width: 34rpx;
  631. }
  632. }
  633. }
  634. .am2 {
  635. margin-bottom: 20rpx;
  636. height: 34rpx;
  637. font-size: 24rpx;
  638. font-weight: 400;
  639. color: #999999;
  640. line-height: 34rpx;
  641. }
  642. }
  643. .a-b {
  644. padding: 0 30rpx;
  645. width: 100%;
  646. background: #FFF7F8;
  647. height: 60rpx;
  648. line-height: 60rpx;
  649. display: flex;
  650. justify-content: space-between;
  651. .a-b1 {
  652. font-size: 20rpx;
  653. font-weight: 400;
  654. color: #666666;
  655. .red {
  656. font-size: 20rpx;
  657. font-weight: 500;
  658. color: #B22338;
  659. }
  660. }
  661. .a-b2 {
  662. image {
  663. vertical-align: middle;
  664. margin-right: 30rpx;
  665. margin-left: 30rpx;
  666. height: 34rpx;
  667. width: 34rpx;
  668. }
  669. }
  670. }
  671. .self-pickup-point {
  672. background: #FFF7F8;
  673. margin: 0 30rpx;
  674. }
  675. .op-area {
  676. height: 120rpx;
  677. display: flex;
  678. justify-content: flex-end;
  679. line-height: 120rpx;
  680. padding: 20rpx 0;
  681. text-align: right;
  682. .action-btn {
  683. min-width: 200rpx;
  684. background: #FFF7F8;
  685. border-radius: 32rpx;
  686. border: 2rpx solid #B22338;
  687. margin-right: 30rpx;
  688. height: 64rpx;
  689. font-size: 24rpx;
  690. font-weight: 400;
  691. color: #B22338;
  692. line-height: 64rpx;
  693. }
  694. .info-btn {
  695. width: 200rpx;
  696. background: #F5F5F5;
  697. border-radius: 32rpx;
  698. margin-right: 30rpx;
  699. height: 64rpx;
  700. font-size: 24rpx;
  701. font-weight: 400;
  702. color: #666666;
  703. line-height: 64rpx;
  704. }
  705. }
  706. .Ended {
  707. color: #666666 !important;
  708. }
  709. .Refused {
  710. color: #B42A3E !important;
  711. }
  712. .success {
  713. color: #75BE00 !important;
  714. }
  715. .publish {
  716. position: fixed;
  717. bottom: 0;
  718. height: 100rpx;
  719. width: 100%;
  720. background: #F9F9F9;
  721. button {
  722. width: 90%;
  723. height: 84rpx;
  724. background: #B42A3E;
  725. border-radius: 8rpx;
  726. position: relative;
  727. top: 0;
  728. margin: auto;
  729. font-size: 28rpx;
  730. font-weight: 400;
  731. color: #FFFFFF;
  732. line-height: 84rpx;
  733. }
  734. }
  735. </style>