index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  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. height: 60rpx;
  398. line-height: 60rpx;
  399. display: flex;
  400. justify-content: space-between;
  401. .a-b1 {
  402. font-size: 20rpx;
  403. font-weight: 400;
  404. color: #666666;
  405. .red {
  406. font-size: 20rpx;
  407. font-weight: 500;
  408. color: #B22338;
  409. }
  410. }
  411. .a-b2 {
  412. image {
  413. vertical-align: middle;
  414. margin-right: 30rpx;
  415. margin-left: 30rpx;
  416. height: 34rpx;
  417. width: 34rpx;
  418. }
  419. }
  420. }
  421. .self-pickup-point {
  422. background: #FFF7F8;
  423. margin: 0 30rpx;
  424. }
  425. .op-area {
  426. height: 120rpx;
  427. display: flex;
  428. justify-content: flex-end;
  429. line-height: 120rpx;
  430. padding: 20rpx 0;
  431. text-align: right;
  432. .action-btn {
  433. min-width: 200rpx;
  434. background: #FFF7F8;
  435. border-radius: 32rpx;
  436. border: 2rpx solid #B22338;
  437. margin-right: 30rpx;
  438. height: 64rpx;
  439. font-size: 24rpx;
  440. font-weight: 400;
  441. color: #B22338;
  442. line-height: 64rpx;
  443. }
  444. .info-btn {
  445. width: 200rpx;
  446. background: #F5F5F5;
  447. border-radius: 32rpx;
  448. margin-right: 30rpx;
  449. height: 64rpx;
  450. font-size: 24rpx;
  451. font-weight: 400;
  452. color: #666666;
  453. line-height: 64rpx;
  454. }
  455. }
  456. .Ended {
  457. color: #666666 !important;
  458. }
  459. .Refused {
  460. color: #B42A3E !important;
  461. }
  462. .publish {
  463. position: fixed;
  464. bottom: 0;
  465. height: 100rpx;
  466. width: 100%;
  467. background: #F9F9F9;
  468. button {
  469. width: 90%;
  470. height: 84rpx;
  471. background: #B42A3E;
  472. border-radius: 8rpx;
  473. position: relative;
  474. top: 0;
  475. margin: auto;
  476. font-size: 28rpx;
  477. font-weight: 400;
  478. color: #FFFFFF;
  479. line-height: 84rpx;
  480. }
  481. }
  482. .all-products-body {
  483. background: white;
  484. .all-products-item {
  485. display: flex;
  486. margin-bottom: 20rpx;
  487. image {
  488. width: 128rpx;
  489. height: 128rpx;
  490. margin-right: 20rpx;
  491. border: 2rpx solid #FFFFFF;
  492. }
  493. .all-products-item-content {
  494. flex-grow: 1;
  495. display: flex;
  496. flex-direction: column;
  497. .all-products-item-content-t {
  498. flex: 1;
  499. font-size: 24rpx;
  500. font-weight: 400;
  501. color: #333333;
  502. line-height: 40rpx;
  503. }
  504. .all-products-item-content-b {
  505. flex: 1;
  506. font-size: 28rpx;
  507. font-weight: 500;
  508. line-height: 80rpx;
  509. display: flex;
  510. justify-content: space-between;
  511. .red {
  512. display: block;
  513. font-size: 28rpx;
  514. font-weight: 500;
  515. color: #B22338 !important;
  516. margin-right: 10rpx;
  517. }
  518. .line-thr {
  519. display: block;
  520. font-size: 28rpx;
  521. font-weight: 400;
  522. color: #999999;
  523. text-decoration: line-through;
  524. }
  525. .count {
  526. font-size: 24rpx;
  527. font-weight: 400;
  528. color: #999999;
  529. margin-right: 30rpx;
  530. }
  531. }
  532. }
  533. }
  534. }
  535. .good_info{
  536. background: #FFFFFF;
  537. padding: 30rpx;
  538. margin-bottom: 20rpx;
  539. .myclient_list_name {
  540. margin-bottom: 15rpx;
  541. min-height: 44rpx;
  542. font-size: 28rpx;
  543. font-weight: 500;
  544. color: #111111;
  545. line-height: 44rpx;
  546. display: flex;
  547. .nv {
  548. flex-grow: 1;
  549. }
  550. .status {
  551. width: 300rpx;
  552. text-align: right;
  553. margin-left: 30rpx;
  554. color: #999999;
  555. }
  556. }
  557. }
  558. </style>