index.vue 15 KB

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