latestGroupBuying.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. <template>
  2. <view class="index-product-wrapper" v-show="!isSortType">
  3. <!-- 拼团列表 -->
  4. <view class="list-box animated" v-for="(e, index) in grouponData" :key="index">
  5. <view @click="goToDetail(e)">
  6. <productConSwiperGroupbuying class="skeleton-rect" :h="210" :imgUrls="e.slideshow" :videoline="e.video_link"
  7. @videoPause="videoPause"></productConSwiperGroupbuying>
  8. </view>
  9. <view class="content">
  10. <view class="home">
  11. <view class="count " @click="goToDetail(e)">共{{ e.goodsTotal }}个</view>
  12. <scroll-view id="scrollView" scroll-x class="navscroll" @click="goToDetail(e)"
  13. :scroll-with-animation="true" onScroll :scroll-left="scrollLeft" @scroll="scroll">
  14. <view :id="'scroll' + index" class="item goods_item_img" v-for="(item, index) in e.goodsImage"
  15. :key="index">
  16. <image style="width: 108rpx;height: 108rpx;" :src="item" mode="scaleToFill" />
  17. </view>
  18. </scroll-view>
  19. <view class="" @click="moveImg()">
  20. <image class="nextimg" src="http://www.gzzzyd.com/groupon/home_slices/进入箭头2小@2x.png"
  21. mode="scaleToFill" />
  22. </view>
  23. </view>
  24. </view>
  25. <view class="wrapper" @click="goToDetail(e)">
  26. <view class="price">
  27. <view>
  28. ¥{{ e.minPrice || 0.00 }} ~ ¥ {{ e.maxPrice || 0.00 }}
  29. </view>
  30. </view>
  31. <view class="introduce" @click="goToDetail(e)">
  32. <view class="grouponTitle ">
  33. <text class="mainTitle">{{ e.mainTitle}}</text>
  34. </view>
  35. <image src="http://www.gzzzyd.com/groupon/home_slices/进入箭头2小@2x.png" mode="scaleToFill" />
  36. </view>
  37. <view class="introduce" @click="goToDetail(e)">
  38. <view class="grouponTitle ">
  39. <text class="subTitle">{{ e.subTitle}}</text>
  40. </view>
  41. </view>
  42. <view class="countdown flex-row">
  43. <view class="countdown-l " hover-class="none" hover-stop-propagation="false">
  44. <block v-for="(item, index) in e.grouponUsers" :key="index">
  45. <image v-if="index < 3" :class="{'avatar-group_1':index===0 }" referrerpolicy="no-referrer"
  46. :src="item.userAvatar || `/static/images/one.png`" />
  47. </block>
  48. <text class="red">{{ e.grouponUserTotal }}人</text>
  49. <text class="yellow" v-if="currentId == 0">正在参团中</text>
  50. <text class="yellow" v-if="currentId == 1">已参团</text>
  51. </view>
  52. <view class="countdown-r " v-if="currentId == 0">
  53. <image :style="{'width':'26rpx','height':'26rpx'}" src="http://www.gzzzyd.com/groupon/home_slices/倒计时@2x.png" mode="scaleToFill" />
  54. <text class="yellow" v-if="e.isStart">截止倒计时</text>
  55. <text class="yellow" v-else>开团倒计时</text>
  56. <u-count-down v-if="e.isStart" :time="e.seconds * 1000" format="HH:mm:ss" @change="timechange">
  57. <text :style="{'color':'#B42A3E','font-size':'26rpx'}">{{timeData.days}}天{{ timeData.hours>10?timeData.hours:'0'+timeData.hours}}时{{ timeData.minutes }}分{{ timeData.seconds }}秒</text>
  58. </u-count-down>
  59. <u-count-down v-if="!e.isStart" :time="e.secondsStart * 1000" format="HH:mm:ss" @change="timechange2">
  60. <text :style="{'color':'#B42A3E','font-size':'26rpx'}">{{timeData.days}}天{{ timeData2.hours>10?timeData2.hours:'0'+timeData2.hours}}时{{ timeData2.minutes }}分{{ timeData2.seconds }}秒</text>
  61. </u-count-down>
  62. </view>
  63. </view>
  64. <view class="self-pickup-point">
  65. <view class="a-t">
  66. <text class="zuijinzitidian">最近的自提网点:</text>
  67. <image class="address-img" src="http://www.gzzzyd.com/groupon/order_details/距离@2x.png" mode="scaleToFill" />
  68. </view>
  69. <view class="a-m">
  70. <view class="am1">
  71. <view class="am1-1">
  72. <text class="self-take-name">{{ e.selfTake.name }}</text>
  73. </view>
  74. <view class="am1-2">
  75. <text class="juli">距您{{ e.selfTake.distanceDesc }}</text>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. <view class='info-area'>
  81. <view class='time '>
  82. <image src="http://www.gzzzyd.com/groupon/home_slices/编辑@2x.png" mode="scaleToFill" />
  83. 发布于:
  84. <text class="imp_info">
  85. {{ e.publishTimeDesc }}
  86. </text>
  87. </view>
  88. <view class='view-count '>
  89. {{ e.views }}人浏览过
  90. <image src="http://www.gzzzyd.com/groupon/home_slices/浏览@2x.png" mode="scaleToFill" />
  91. </view>
  92. </view>
  93. </view>
  94. <view class="btn-area" v-if="currentId == 0">
  95. <button class="share" open-type="share" :data-groupon="e">
  96. <image src="http://www.gzzzyd.com/groupon/home_slices/分享@2x.png" mode="scaleToFill" />
  97. <text>分享有礼</text>
  98. </button>
  99. <button class="now" @click="goToDetail(e)">
  100. <image src="http://www.gzzzyd.com/groupon/home_slices/购物@2x.png" mode="scaleToFill" />
  101. <text>立即下单</text>
  102. </button>
  103. </view>
  104. </view>
  105. </view>
  106. </template>
  107. <script>
  108. const app = getApp();
  109. import productConSwiperGroupbuying from "@/components/productConSwiperGroupbuying";
  110. import { latestGroupon, historyGroupon, detailGroupon, goodsDetail } from '@/api/groupon.js'
  111. export default {
  112. components: {
  113. productConSwiperGroupbuying
  114. },
  115. name: 'promotionList',
  116. props: {
  117. grouponData: {
  118. type: Array,
  119. default() {
  120. return []
  121. }
  122. },
  123. dataConfig: {
  124. type: Object,
  125. default: () => { }
  126. },
  127. positionInfo: {
  128. type: Object,
  129. default: () => { }
  130. },
  131. tempArr: {
  132. type: Array,
  133. default: []
  134. },
  135. iSshowH: {
  136. type: Boolean,
  137. default: false
  138. },
  139. isSortType: {
  140. type: String | Number,
  141. default: 0
  142. },
  143. currentId: {
  144. type: String | Number,
  145. default() {
  146. return 0
  147. }
  148. }
  149. },
  150. watch: {
  151. },
  152. data() {
  153. return {
  154. scrollLeft: 0,
  155. scrollLeftOld: 0,
  156. timeData: {},
  157. timeData2: {},
  158. timestamp: 86400,
  159. navigationList2: [],
  160. ProductNavindex: 0,
  161. numConfig: 9,
  162. // imgStyle: this.dataConfig.imgStyle.type,
  163. mbConfig: 0,
  164. themeColor: "rgba(29,176,252,1)",
  165. titleShow: true, //标题是否显示
  166. opriceShow: true, //原价是否显示
  167. priceShow: true, //价格是否显示
  168. couponShow: true,//优惠券标签是否显示
  169. titleConfig: 2, //标题位置
  170. fontColor: "rgba(253,80,47,1)",
  171. labelColor: "rgba(29,176,252,1)",
  172. typeId: '',
  173. loading: false, //是否加载中
  174. loadend: false, //是否加载完毕
  175. loadTitle: this.$t(`加载更多`), //提示语
  176. };
  177. },
  178. created() {
  179. },
  180. methods: {
  181. scroll(e) {
  182. this.scrollLeftOld = e.detail.scrollLeft
  183. },
  184. moveImg() {
  185. this.scrollLeft = this.scrollLeftOld + 54
  186. },
  187. timechange(e) {
  188. this.timeData = e
  189. },
  190. timechange2(e) {
  191. this.timeData2 = e
  192. },
  193. goToDetail(item) {
  194. uni.navigateTo({
  195. url: `/pages/groupbuying_details/index?id=${item.id}&selfTakeId=${item.selfTake.id}&organizerUserId=${item.organizerUserId}`
  196. })
  197. },
  198. }
  199. }
  200. </script>
  201. <style lang="scss">
  202. .grouponTitle{
  203. display: flex;
  204. flex-direction: column;
  205. width: 630rpx;
  206. height: 55rpx;
  207. }
  208. .subTitle{
  209. font-size: 28rpx;
  210. color: #666666;
  211. font-weight: 400;
  212. line-height: 44rpx;
  213. display: -webkit-box;
  214. -webkit-box-orient: vertical;
  215. -webkit-line-clamp: 1;
  216. overflow: hidden;
  217. text-overflow: ellipsis;
  218. }
  219. .mainTitle{
  220. display: -webkit-box;
  221. -webkit-box-orient: vertical;
  222. -webkit-line-clamp: 1;
  223. overflow: hidden;
  224. text-overflow: ellipsis;
  225. }
  226. .list-box {
  227. background: white;
  228. padding-bottom: 20px;
  229. }
  230. .index-product-wrapper {
  231. &.on {
  232. min-height: 1050rpx;
  233. }
  234. .nav-bd {
  235. display: flex;
  236. align-items: center;
  237. margin-top: 30rpx;
  238. .item {
  239. display: flex;
  240. flex-direction: column;
  241. align-items: center;
  242. justify-content: center;
  243. width: 25%;
  244. &.on {
  245. border-radius: 0;
  246. }
  247. .txt {
  248. font-size: 32rpx;
  249. color: #282828;
  250. }
  251. .label {
  252. display: flex;
  253. align-items: center;
  254. justify-content: center;
  255. width: 124rpx;
  256. height: 32rpx;
  257. margin-top: 5rpx;
  258. font-size: 24rpx;
  259. color: #999;
  260. border-radius: 16rpx;
  261. }
  262. }
  263. }
  264. }
  265. .content {
  266. width: 100%;
  267. height: 124rpx;
  268. margin-top: 10rpx;
  269. .home {
  270. display: flex;
  271. width: 100%;
  272. height: 124rpx;
  273. margin-top: 10rpx;
  274. .count {
  275. text-align: center;
  276. width: 98rpx !important;
  277. height: 124rpx;
  278. line-height: 108rpx;
  279. z-index: 999;
  280. background-size: 100% 100%;
  281. background: linear-gradient(90deg, #FFE9E9 0%, #FAFAFA 100%);
  282. }
  283. .navscroll {
  284. white-space: nowrap;
  285. width: 570rpx;
  286. height: auto;
  287. overflow: hidden;
  288. }
  289. }
  290. }
  291. .info-area {
  292. margin: 23rpx 30rpx 0 30rpx;
  293. justify-content: space-between;
  294. display: flex;
  295. width: 100%;
  296. height: 44rpx;
  297. font-size: 24rpx;
  298. font-weight: 400;
  299. color: #333333;
  300. line-height: 44rpx;
  301. image {
  302. width: 40rpx;
  303. height: 40rpx;
  304. margin: 0 10rpx;
  305. vertical-align: middle;
  306. }
  307. .time {
  308. font-size: 24rpx;
  309. font-weight: 400;
  310. color: #999999;
  311. .imp_info {
  312. font-size: 24rpx;
  313. font-weight: 400;
  314. color: #333333;
  315. }
  316. }
  317. .view-count {
  318. font-size: 24rpx;
  319. font-weight: 400;
  320. color: #999999;
  321. margin-right: 60rpx;
  322. }
  323. }
  324. .countdown {
  325. margin: 23rpx 30rpx 0 30rpx;
  326. box-sizing: border-box;
  327. background-color: rgba(255, 247, 248, 1.000000);
  328. border-radius: 12rpx;
  329. height: 72rpx;
  330. padding: 20rpx;
  331. line-height: 100rpx;
  332. align-self: center;
  333. display: flex;
  334. display: flex;
  335. justify-content: space-between;
  336. .countdown-l {
  337. flex: 1;
  338. display: flex;
  339. align-items: center;
  340. }
  341. .countdown-r {
  342. display: flex;
  343. align-items: center;
  344. }
  345. .red {
  346. height: 34rpx;
  347. font-size: 24rpx;
  348. font-weight: 600;
  349. line-height: 34rpx;
  350. color: #B22338;
  351. vertical-align: super;
  352. margin-left: 20rpx;
  353. }
  354. .red2 {
  355. height: 40rpx;
  356. font-size: 28rpx;
  357. font-weight: 600;
  358. color: #B22338;
  359. line-height: 40rpx;
  360. vertical-align: super;
  361. }
  362. /deep/.yellow,
  363. .u-count-down {
  364. font-size: 24rpx;
  365. font-weight: 400;
  366. color: #FF9600;
  367. line-height: 80rpx;
  368. margin: 0 10rpx;
  369. vertical-align: super;
  370. }
  371. image {
  372. width: 40rpx;
  373. height: 40rpx;
  374. border-radius: 20rpx;
  375. margin-left: -20rpx;
  376. border: 2rpx solid #FFFFFF;
  377. }
  378. .avatar-group_1{
  379. margin-left: 0rpx;
  380. }
  381. }
  382. .price {
  383. padding: 0 30rpx;
  384. height: 48rpx;
  385. font-size: 36rpx;
  386. font-weight: bolder;
  387. color: #B22338;
  388. line-height: 48rpx;
  389. margin: 20rpx 0;
  390. }
  391. .introduce {
  392. padding: 0 30rpx;
  393. min-height: 44rpx;
  394. font-size: 36rpx;
  395. font-weight: bolder;
  396. color: #111111;
  397. line-height: 44rpx;
  398. margin: 10rpx 0;
  399. display: flex;
  400. justify-content: space-between;
  401. image {
  402. width: 36rpx;
  403. height: 36rpx;
  404. margin-top: 8rpx;
  405. }
  406. }
  407. .wrapper {}
  408. .a-t {
  409. display: flex;
  410. justify-content: space-between;
  411. height: 52rpx;
  412. .address-img {
  413. width: 14px !important;
  414. height: 14px;
  415. margin-top: 19rpx;
  416. margin-right: 56rpx;
  417. }
  418. }
  419. .a-m {
  420. height: 52rpx;
  421. .am1 {
  422. display: flex;
  423. justify-content: space-between;
  424. .am1-1 {
  425. width: 450rpx;
  426. min-height: 40rpx;
  427. font-size: 28rpx;
  428. font-weight: bold;
  429. color: #B22338;
  430. line-height: 40rpx;
  431. display: -webkit-box;
  432. -webkit-box-orient: vertical;
  433. -webkit-line-clamp: 2;
  434. overflow: hidden;
  435. text-overflow: ellipsis;
  436. }
  437. .am1-2 {
  438. height: 36rpx;
  439. font-size: 20rpx;
  440. font-weight: 400;
  441. color: #666666;
  442. line-height: 36rpx;
  443. }
  444. }
  445. .am2 {
  446. margin-bottom: 20rpx;
  447. height: 34rpx;
  448. font-size: 24rpx;
  449. font-weight: 400;
  450. color: #999999;
  451. line-height: 34rpx;
  452. }
  453. }
  454. .a-b {
  455. padding: 0 30rpx;
  456. width: 100%;
  457. background: #FFF7F8;
  458. height: 60rpx;
  459. line-height: 60rpx;
  460. display: flex;
  461. justify-content: space-between;
  462. .a-b1 {
  463. font-size: 20rpx;
  464. font-weight: 400;
  465. color: #666666;
  466. .red {
  467. font-size: 20rpx;
  468. font-weight: 500;
  469. color: #B22338;
  470. }
  471. }
  472. .a-b2 {
  473. image {
  474. vertical-align: middle;
  475. margin-right: 30rpx;
  476. margin-left: 30rpx;
  477. height: 34rpx;
  478. width: 34rpx;
  479. }
  480. }
  481. }
  482. .self-pickup-point {
  483. background: #FFF7F8;
  484. margin: 0 30rpx;
  485. margin-top: 8rpx;
  486. height: 104rpx;
  487. }
  488. .btn-area {
  489. padding: 30rpx;
  490. display: flex;
  491. flex-direction: row;
  492. justify-content: center;
  493. height: 80rpx;
  494. image {
  495. width: 28rpx;
  496. height: 28rpx;
  497. margin-right: 10rpx;
  498. margin-top: 18rpx;
  499. line-height: 64rpx;
  500. }
  501. button {
  502. display: flex;
  503. flex-direction: row;
  504. justify-content: center;
  505. margin: auto;
  506. height: 64rpx;
  507. border-radius: 8rpx;
  508. line-height: 64rpx;
  509. width: 332rpx;
  510. }
  511. .share {
  512. margin-right: 20rpx;
  513. background: #F1F8E5;
  514. font-size: 24rpx;
  515. font-weight: 400;
  516. color: #75BE00;
  517. }
  518. .now {
  519. background: #F7E9EB;
  520. font-size: 24rpx;
  521. font-weight: 400;
  522. color: #B22338;
  523. }
  524. }
  525. .goods_item_img {
  526. display: inline-block;
  527. line-height: 108rpx;
  528. width: 108rpx;
  529. height: 108rpx;
  530. border-radius: 5rpx;
  531. margin-top: 8rpx;
  532. overflow: hidden;
  533. margin-left: 16rpx;
  534. }
  535. .nextimg{
  536. width: 34rpx;
  537. height: 34rpx;
  538. margin-top: 45rpx;
  539. margin-left: 10rpx;
  540. }
  541. .bord{
  542. border: 1px solid red;
  543. }
  544. .self-take-name {
  545. width: 500rpx;
  546. font-size: 20rpx;
  547. font-family: PingFangSC-Medium, PingFang SC;
  548. font-weight: bold;
  549. color: #B22338;
  550. line-height: 52rpx;
  551. margin-left: 18rpx;
  552. }
  553. .zuijinzitidian {
  554. font-size: 20rpx;
  555. font-family: PingFangSC-Regular, PingFang SC;
  556. font-weight: 400;
  557. color: #666666;
  558. line-height: 52rpx;
  559. margin-left: 18rpx;
  560. }
  561. .juli {
  562. font-size: 20rpx;
  563. font-family: PingFangSC-Regular, PingFang SC;
  564. font-weight: 400;
  565. color: #666666;
  566. line-height: 52rpx;
  567. margin-right: 18rpx;
  568. }
  569. </style>