index.vue 11 KB

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