index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688
  1. <template>
  2. <view>
  3. <view class="my-order">
  4. <view class="list" @click="goOrderDetails()">
  5. <view class="myclient_list">
  6. <view class="myclient_list_name">
  7. <view class="nl">
  8. {{groupBuy.mainTitle}}
  9. </view>
  10. <view class="status">
  11. {{groupBuy.grouponStateDesc}}
  12. </view>
  13. </view>
  14. <view class="myclient_list_content">
  15. <view class="subtitle">{{groupBuy.subTitle}}</view>
  16. <view class="phone">
  17. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/日期@2x.png" />
  18. <text>
  19. 团购日期:{{groupBuy.grouponStartTime}} 至 {{groupBuy.grouponEndTime}}
  20. </text>
  21. </view>
  22. <view class="time">
  23. <image referrerpolicy="no-referrer" src="http://www.gzzzyd.com/groupon/home_slices/时间@2x.png" />
  24. <text>
  25. 提货时间:{{groupBuy.takeStartTime}} 至 {{groupBuy.takeEndTime}}
  26. </text>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="self-pickup-point" >
  31. <view class="a-b" v-for="(self,index) in groupBuy.selfTakeList" :key="index">
  32. <view class="a-b1">
  33. 自提点:
  34. <text class="red">
  35. {{self.address}}
  36. </text>
  37. </view>
  38. <view class="a-b2">
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. <view class="good_info">
  44. <view class="myclient_list_name">
  45. <view class="nv">
  46. 团购商品
  47. </view>
  48. <view class="status">
  49. 共{{groupBuy.goodsList.length}}件商品
  50. </view>
  51. </view>
  52. <view class="all-products-body">
  53. <view class="all-products-item" @click="addGoodPopupShow = true" v-for="(item,index) in groupBuy.goodsList" :key="index">
  54. <image
  55. :src="item.goodsCover"
  56. mode="scaleToFill" />
  57. <view class="all-products-item-content">
  58. <view class="all-products-item-content-t">
  59. {{item.goodsName}}
  60. </view>
  61. <view class="all-products-item-content-b">
  62. <view style="display:flex;">
  63. <text class="red"> ¥{{item.discountPrice}}</text>
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. </view>
  70. </view>
  71. <!-- #ifndef MP -->
  72. <home></home>
  73. <!-- #endif -->
  74. </view>
  75. </template>
  76. <script>
  77. import {
  78. grouponMngDetail
  79. } from '@/api/groupon.js';
  80. import {
  81. getUserInfo
  82. } from '@/api/user.js';
  83. import home from '@/components/home';
  84. import payment from '@/components/payment';
  85. import {
  86. mapGetters
  87. } from 'vuex';
  88. // #ifdef MP
  89. import authorize from '@/components/Authorize';
  90. // #endif
  91. import emptyPage from '@/components/emptyPage.vue';
  92. import colors from '@/mixins/color.js';
  93. export default {
  94. components: {
  95. payment,
  96. home,
  97. emptyPage,
  98. // #ifdef MP
  99. authorize
  100. // #endif
  101. },
  102. mixins: [colors],
  103. data () {
  104. return {
  105. groupBuy:{},
  106. loading: false, //是否加载中
  107. loadend: false, //是否加载完毕
  108. loadTitle: this.$t(`加载更多`), //提示语
  109. orderList: [], //订单数组
  110. orderData: {}, //订单详细统计
  111. orderStatus: 0, //订单状态
  112. page: 1,
  113. limit: 20,
  114. pay_close: false,
  115. pay_order_id: '',
  116. pay_orderId: '',
  117. totalPrice: '0',
  118. isAuto: false, //没有授权的不会自动授权
  119. isShowAuth: false //是否隐藏授权
  120. };
  121. },
  122. computed: mapGetters(['isLogin']),
  123. onShow () {
  124. },
  125. /**
  126. * 生命周期函数--监听页面加载
  127. */
  128. onLoad (options) {
  129. this.grouponMngDetail(options.id)
  130. },
  131. methods: {
  132. grouponMngDetail(id){
  133. grouponMngDetail(id).then(res =>{
  134. this.groupBuy = res.data
  135. });
  136. },
  137. onLoadFun () {
  138. this.getOrderData();
  139. this.getUserInfo();
  140. },
  141. // 授权关闭
  142. authColse: function (e) {
  143. this.isShowAuth = e;
  144. },
  145. /**
  146. * 事件回调
  147. *
  148. */
  149. onChangeFun: function (e) {
  150. let opt = e;
  151. let action = opt.action || null;
  152. let value = opt.value != undefined ? opt.value : null;
  153. action && this[action] && this[action](value);
  154. },
  155. /**
  156. * 获取用户信息
  157. *
  158. */
  159. getUserInfo: function () {
  160. let that = this;
  161. getUserInfo().then(res => {
  162. that.payMode[2].number = res.data.now_money;
  163. that.$set(that, 'payMode', that.payMode);
  164. });
  165. },
  166. /**
  167. * 关闭支付组件
  168. *
  169. */
  170. payClose: function () {
  171. this.pay_close = false;
  172. },
  173. /**
  174. * 去订单详情
  175. */
  176. goOrderDetails: function (order_id, order) {
  177. uni.navigateTo({
  178. url: '/pages/groupbuying_details/order_details_list/index?order_id= + order_id'
  179. });
  180. // let that = this;
  181. // if (!order_id)
  182. // return that.$util.Tips({
  183. // title: that.$t(`缺少订单号无法查看订单详情`)
  184. // });
  185. // uni.showLoading({
  186. // title: that.$t(`正在加载中`)
  187. // });
  188. // openOrderSubscribe()
  189. // .then(() => {
  190. // uni.hideLoading();
  191. // uni.navigateTo({
  192. // url: '/pages/goods/order_details/index?order_id=' + order_id
  193. // // +'&order='+JSON.stringify(order)
  194. // // +'&goods='+encodeURIComponent(JSON.stringify(order.orderGoods))
  195. // })
  196. // })
  197. // .catch(err => {
  198. // uni.hideLoading();
  199. // });
  200. },
  201. /**
  202. * 获取订单列表
  203. */
  204. getOrderList: function () {
  205. // let that = this;
  206. // if (that.loadend) return;
  207. // if (that.loading) return;
  208. // that.loading = true;
  209. // that.loadTitle = that.$t(`加载更多`);
  210. // getUserOrderPage({
  211. // userId: this.$store.state.app.uid,
  212. // current: that.page,
  213. // size: that.limit,
  214. // payFlag: this.orderStatus
  215. // })
  216. // .then(res => {
  217. // let list = res.data || [];
  218. // let loadend = list.length < that.limit;
  219. // that.orderList = that.$util.SplitArray(list, that.orderList);
  220. // that.$set(that, 'orderList', that.orderList);
  221. // that.loadend = loadend;
  222. // that.loading = false;
  223. // that.loadTitle = loadend ? that.$t(`没有更多内容啦~`) : that.$t(`加载更多`);
  224. // that.page = that.page + 1;
  225. // })
  226. // .catch(err => {
  227. // that.loading = false;
  228. // that.loadTitle = that.$t(`加载更多`);
  229. // });
  230. },
  231. },
  232. onReachBottom: function () {
  233. this.getOrderList();
  234. }
  235. };
  236. </script>
  237. <style scoped lang="scss">
  238. .my-order .nav {
  239. background-color: #F9F9F9;
  240. width: 100%;
  241. // height: 140rpx;
  242. }
  243. .my-order .nav .item {
  244. text-align: center;
  245. font-size: 26rpx;
  246. color: #282828;
  247. padding: 27rpx 0;
  248. border-bottom: 5rpx solid transparent;
  249. }
  250. .my-order .nav .item.on {
  251. /* #ifdef H5 || MP */
  252. font-weight: bold;
  253. /* #endif */
  254. /* #ifdef APP-PLUS */
  255. color: #000;
  256. /* #endif */
  257. border-color: var(--view-theme);
  258. }
  259. .my-order .nav .item .num {
  260. margin-top: 18rpx;
  261. }
  262. .list {
  263. width: 100%;
  264. background: white;
  265. margin: 14rpx auto 0 auto;
  266. padding-bottom: 30rpx;
  267. }
  268. .noCart {
  269. margin-top: 171rpx;
  270. padding-top: 0.1rpx;
  271. }
  272. .noCart .pictrue {
  273. width: 414rpx;
  274. height: 336rpx;
  275. margin: 78rpx auto 56rpx auto;
  276. }
  277. .noCart .pictrue image {
  278. width: 100%;
  279. height: 100%;
  280. }
  281. .my-order .list .item .item-info .text .money .return {
  282. // color: var(--view-priceColor);
  283. margin-top: 10rpx;
  284. font-size: 24rpx;
  285. }
  286. .myclient_list {
  287. padding: 30rpx;
  288. background: #FFFFFF;
  289. .myclient_list_name {
  290. margin-bottom: 15rpx;
  291. min-height: 44rpx;
  292. font-size: 28rpx;
  293. font-weight: 500;
  294. color: #111111;
  295. line-height: 44rpx;
  296. display: flex;
  297. .nv {
  298. flex-grow: 1;
  299. }
  300. .status {
  301. width: 300rpx;
  302. text-align: right;
  303. margin-left: 30rpx;
  304. color: #75BE00;
  305. }
  306. }
  307. .myclient_list_content {
  308. .subtitle {
  309. height: 44rpx;
  310. margin: 20rpx 0;
  311. font-size: 28rpx;
  312. font-weight: 400;
  313. color: #666666;
  314. line-height: 44rpx;
  315. }
  316. image {
  317. width: 24rpx;
  318. height: 24rpx;
  319. margin-right: 20rpx;
  320. }
  321. .phone {
  322. margin-bottom: 15rpx;
  323. height: 44rpx;
  324. font-size: 24rpx;
  325. font-weight: 400;
  326. color: #999999;
  327. line-height: 44rpx;
  328. }
  329. .time {
  330. height: 44rpx;
  331. font-size: 24rpx;
  332. font-weight: 400;
  333. color: #999999;
  334. line-height: 44rpx;
  335. }
  336. }
  337. }
  338. .all-products-body {
  339. background: white;
  340. .all-products-item {
  341. display: flex;
  342. margin-bottom: 20rpx;
  343. image {
  344. width: 128rpx;
  345. height: 128rpx;
  346. margin-right: 20rpx;
  347. border: 2rpx solid #FFFFFF;
  348. }
  349. .all-products-item-content {
  350. flex-grow: 1;
  351. display: flex;
  352. flex-direction: column;
  353. .all-products-item-content-t {
  354. flex: 1;
  355. font-size: 24rpx;
  356. font-weight: 400;
  357. color: #333333;
  358. line-height: 40rpx;
  359. }
  360. .all-products-item-content-b {
  361. flex: 1;
  362. font-size: 28rpx;
  363. font-weight: 500;
  364. line-height: 80rpx;
  365. display: flex;
  366. justify-content: space-between;
  367. .red {
  368. display: block;
  369. font-size: 28rpx;
  370. font-weight: 500;
  371. color: #B22338 !important;
  372. margin-right: 10rpx;
  373. }
  374. .line-thr {
  375. display: block;
  376. font-size: 28rpx;
  377. font-weight: 400;
  378. color: #999999;
  379. text-decoration: line-through;
  380. }
  381. .count {
  382. font-size: 24rpx;
  383. font-weight: 400;
  384. color: #999999;
  385. margin-right: 30rpx;
  386. }
  387. }
  388. }
  389. }
  390. }
  391. .a-t {
  392. padding: 0 30rpx;
  393. display: flex;
  394. justify-content: space-between;
  395. height: 44rpx;
  396. margin-bottom: 20rpx;
  397. }
  398. .a-m {
  399. padding: 0 30rpx;
  400. .am1 {
  401. display: flex;
  402. justify-content: space-between;
  403. margin-bottom: 20rpx;
  404. .am1-1 {
  405. height: 40rpx;
  406. font-size: 28rpx;
  407. font-weight: 400;
  408. color: #111111;
  409. line-height: 40rpx;
  410. }
  411. .am1-2 {
  412. height: 36rpx;
  413. font-size: 20rpx;
  414. font-weight: 400;
  415. color: #666666;
  416. line-height: 36rpx;
  417. image {
  418. margin-left: 30rpx;
  419. vertical-align: middle;
  420. height: 34rpx;
  421. width: 34rpx;
  422. }
  423. }
  424. }
  425. .am2 {
  426. margin-bottom: 20rpx;
  427. height: 34rpx;
  428. font-size: 24rpx;
  429. font-weight: 400;
  430. color: #999999;
  431. line-height: 34rpx;
  432. }
  433. }
  434. .a-b {
  435. padding: 0 30rpx;
  436. width: 100%;
  437. background: #FFF7F8;
  438. border: 1px solid dashed #333333;
  439. height: 60rpx;
  440. line-height: 60rpx;
  441. display: flex;
  442. justify-content: space-between;
  443. .a-b1 {
  444. font-size: 20rpx;
  445. font-weight: 400;
  446. color: #666666;
  447. .red {
  448. font-size: 20rpx;
  449. font-weight: 500;
  450. color: #B22338;
  451. }
  452. }
  453. .a-b2 {
  454. image {
  455. vertical-align: middle;
  456. margin-right: 30rpx;
  457. margin-left: 30rpx;
  458. height: 34rpx;
  459. width: 34rpx;
  460. }
  461. }
  462. }
  463. .self-pickup-point {
  464. background: #FFF7F8;
  465. margin: 0 30rpx;
  466. }
  467. .op-area {
  468. height: 120rpx;
  469. display: flex;
  470. justify-content: flex-end;
  471. line-height: 120rpx;
  472. padding: 20rpx 0;
  473. text-align: right;
  474. .action-btn {
  475. min-width: 200rpx;
  476. background: #FFF7F8;
  477. border-radius: 32rpx;
  478. border: 2rpx solid #B22338;
  479. margin-right: 30rpx;
  480. height: 64rpx;
  481. font-size: 24rpx;
  482. font-weight: 400;
  483. color: #B22338;
  484. line-height: 64rpx;
  485. }
  486. .info-btn {
  487. width: 200rpx;
  488. background: #F5F5F5;
  489. border-radius: 32rpx;
  490. margin-right: 30rpx;
  491. height: 64rpx;
  492. font-size: 24rpx;
  493. font-weight: 400;
  494. color: #666666;
  495. line-height: 64rpx;
  496. }
  497. }
  498. .Ended {
  499. color: #666666 !important;
  500. }
  501. .Refused {
  502. color: #B42A3E !important;
  503. }
  504. .publish {
  505. position: fixed;
  506. bottom: 0;
  507. height: 100rpx;
  508. width: 100%;
  509. background: #F9F9F9;
  510. button {
  511. width: 90%;
  512. height: 84rpx;
  513. background: #B42A3E;
  514. border-radius: 8rpx;
  515. position: relative;
  516. top: 0;
  517. margin: auto;
  518. font-size: 28rpx;
  519. font-weight: 400;
  520. color: #FFFFFF;
  521. line-height: 84rpx;
  522. }
  523. }
  524. .all-products-body {
  525. background: white;
  526. .all-products-item {
  527. display: flex;
  528. margin-bottom: 20rpx;
  529. image {
  530. width: 128rpx;
  531. height: 128rpx;
  532. margin-right: 20rpx;
  533. border: 2rpx solid #FFFFFF;
  534. }
  535. .all-products-item-content {
  536. flex-grow: 1;
  537. display: flex;
  538. flex-direction: column;
  539. .all-products-item-content-t {
  540. flex: 1;
  541. font-size: 24rpx;
  542. font-weight: 400;
  543. color: #333333;
  544. line-height: 40rpx;
  545. }
  546. .all-products-item-content-b {
  547. flex: 1;
  548. font-size: 28rpx;
  549. font-weight: 500;
  550. line-height: 80rpx;
  551. display: flex;
  552. justify-content: space-between;
  553. .red {
  554. display: block;
  555. font-size: 28rpx;
  556. font-weight: 500;
  557. color: #B22338 !important;
  558. margin-right: 10rpx;
  559. }
  560. .line-thr {
  561. display: block;
  562. font-size: 28rpx;
  563. font-weight: 400;
  564. color: #999999;
  565. text-decoration: line-through;
  566. }
  567. .count {
  568. font-size: 24rpx;
  569. font-weight: 400;
  570. color: #999999;
  571. margin-right: 30rpx;
  572. }
  573. }
  574. }
  575. }
  576. }
  577. .good_info{
  578. background: #FFFFFF;
  579. padding: 30rpx;
  580. margin-bottom: 20rpx;
  581. .myclient_list_name {
  582. margin-bottom: 15rpx;
  583. min-height: 44rpx;
  584. font-size: 28rpx;
  585. font-weight: 500;
  586. color: #111111;
  587. line-height: 44rpx;
  588. display: flex;
  589. .nv {
  590. flex-grow: 1;
  591. }
  592. .status {
  593. width: 300rpx;
  594. text-align: right;
  595. margin-left: 30rpx;
  596. color: #999999;
  597. }
  598. }
  599. }
  600. </style>