index.vue 17 KB

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