index.vue 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793
  1. <template>
  2. <page :nav="false" ref="pageRef" light nav-color="transparent">
  3. <view
  4. class="pagae-nav"
  5. :style="{ paddingTop: statusBarHeight + 'px', background: headerBg }"
  6. >
  7. <view class="flex-align-center relative" style="height: 80rpx">
  8. <text class="cuIcon-back back" @click.stop="back"></text>
  9. <view v-if="data" class="title line-ellipsis">
  10. {{ TYPE_MAP[data.type].title }}
  11. </view>
  12. </view>
  13. </view>
  14. <view class="roomBg" :style="'background-image:url(' + ossurl.box.headbj + ')'">
  15. <view v-if="data">
  16. <view class="roomTitle">
  17. {{ data.name }}
  18. </view>
  19. <view class="roomType">
  20. <image :src="TYPE_MAP[data.type].topFlag" class="topFlag" />
  21. </view>
  22. <!-- <view class="description">{{ data.description }}</view> -->
  23. <view class="timeBox">
  24. <image :src="ossurl.welfare.detail.time" class="image" />
  25. 开赏:
  26. <span class="time">{{ data.luckTime }}</span>
  27. </view>
  28. <view class="flex-align-between marginT10">
  29. <view
  30. v-if="data.groupBtnFlag === 1"
  31. class="filter-wrapper flex-shrink0 relative marginR10"
  32. >
  33. <image :src="resource.group_add" class="image" />
  34. <cell
  35. class="group-btn"
  36. url="https://work.weixin.qq.com/gm/140cdeace2d2c03b35d693b1b755b815"
  37. />
  38. </view>
  39. <view
  40. v-if="data.prizeMode !== 1 && data.type !== 'EUROPEAN_GAS'"
  41. class="recordBtn"
  42. @click="winRecord()"
  43. >
  44. <image :src="ossurl.welfare.detail.record" class="image" />
  45. </view>
  46. <view
  47. v-if="data.type === 'EUROPEAN_GAS'"
  48. class="numberSignBox"
  49. @click="myLuckNum(1)"
  50. >
  51. <image :src="ossurl.welfare.detail.numberSign" class="image" />
  52. </view>
  53. </view>
  54. </view>
  55. <view v-if="data" class="cardBox">
  56. <view class="cardTitle">
  57. 赠品池
  58. <view class="cardNum">{{ tableData.length }}件赠品</view>
  59. </view>
  60. <view class="cardList">
  61. <scroll-view scroll-y :style="{ height: 440 + 'rpx' }">
  62. <view class="dataList">
  63. <view
  64. class="item"
  65. v-for="(item, index) in tableData"
  66. :key="index"
  67. @click="showGoodsDetail(item)"
  68. >
  69. <image :src="item.spu.cover" mode="aspectFit" class="itemImage" />
  70. <view class="text line-ellipsis">{{ item.spu.name }}</view>
  71. <view
  72. class="num"
  73. :style="
  74. 'background-image:url(' + ossurl.welfare.detail.numBg + ')'
  75. "
  76. v-if="data.status == 1"
  77. >
  78. x{{ item.quantity }}
  79. </view>
  80. <view
  81. v-if="
  82. data.status == 2 &&
  83. data.prizeMode !== 1 &&
  84. data.type == 'EUROPEAN_GAS'
  85. "
  86. class="user flex-column-align-center"
  87. >
  88. <image
  89. class="avatar"
  90. :src="item.avatar"
  91. :style="{
  92. width: '40px',
  93. height: '40px',
  94. borderRadius: '20px'
  95. }"
  96. />
  97. <view class="nickname">
  98. {{ item.nickname }}
  99. </view>
  100. <view class="sign">
  101. {{ item.sign }}
  102. </view>
  103. </view>
  104. </view>
  105. </view>
  106. </scroll-view>
  107. </view>
  108. </view>
  109. </view>
  110. <view class="people-wrapper" v-if="data">
  111. <view class="peopleNum">
  112. 参与度
  113. <view class="num">{{ data.participatingList.length }}个玩家</view>
  114. </view>
  115. <view class="peopleList">
  116. <scroll-view scroll-y :style="{ height: 440 + 'rpx' }">
  117. <template v-if="data.participatingList">
  118. <view
  119. class="item"
  120. v-for="item in data.participatingList"
  121. :key="item.userId"
  122. >
  123. <image :src="item.avatar" mode="scaleToFill" />
  124. <view class="text line-ellipsis">{{ item.nickname }}</view>
  125. </view>
  126. </template>
  127. </scroll-view>
  128. </view>
  129. </view>
  130. <view class="bottom" v-if="data">
  131. <view class="bottomTimeBox" v-if="data.status == 1">
  132. <image :src="ossurl.welfare.detail.time" webp style="width: 32rpx; height: 32rpx" />
  133. <view class="marginL10 bottomTime">
  134. <text>倒计时:</text>
  135. <text class="time">{{ leftTimeStr }}</text>
  136. </view>
  137. </view>
  138. <view v-else></view>
  139. <view class="flex btnBox">
  140. <view
  141. class="btn addBtn marginR8"
  142. @click="myLuckNum(2)"
  143. v-if="
  144. data.status == 1 &&
  145. data.myParticipatedFlag === 1 &&
  146. data.type === 'EUROPEAN_GAS'
  147. "
  148. >
  149. <text>增加号签</text>
  150. </view>
  151. <view class="btn" @click="join" v-if="data.status == 1" :style="'background: url(' + ossurl.mine.butbj + ') no-repeat; background-size: 100% 100%;'">
  152. <text v-if="data.myParticipatedFlag === 1">
  153. <text v-if="data.participateMode == 1 && data.myAuditStatus == 0">
  154. 待审核
  155. </text>
  156. <text v-else-if="data.participateMode == 1 && data.myAuditStatus == 1">
  157. 审核不通过
  158. </text>
  159. <text v-else>等待开赏</text>
  160. </text>
  161. <text v-else>加入房间,即可参与</text>
  162. </view>
  163. <view class="btn" v-else>
  164. <text>已开奖</text>
  165. </view>
  166. </view>
  167. </view>
  168. <join ref="joinRef" @success="joinSuccess" :roomId="roomId" />
  169. <poster
  170. v-if="data"
  171. ref="posterRef"
  172. :imgs="data.luckRoomGoodsList.slice(0, 6)"
  173. :tip="tip"
  174. page="pages/weal_detail/index"
  175. :scene="roomId"
  176. :userId="user.username"
  177. @success="shareSuccess"
  178. />
  179. <goods-detail ref="goodsDetailRef" />
  180. <win-record ref="winRecordRef" />
  181. <luck-num ref="luckNumRef" @success="share" />
  182. </page>
  183. </template>
  184. <script>
  185. import join from './join'
  186. import resource from '@/utils/resource'
  187. import ossurl from '@/utils/ossurl'
  188. import { WX_PUSH_MESSAGE_ID } from '@/utils/config'
  189. import loginMixin from '@/mixin/login'
  190. import poster from './poster'
  191. import { throttle } from '@/utils'
  192. import goodsDetail from '@/pages/store/goods_detail'
  193. import winRecord from './winRecord.vue'
  194. import luckNum from './luck_num_dialog.vue'
  195. const TYPE_MAP = {
  196. COMMON: {
  197. title: '福利房',
  198. itemClass: 'item1',
  199. topFlag: ossurl.welfare.welfareIcon,
  200. flag: resource.weal_room_flag1,
  201. btn: resource.weal_btn_1
  202. },
  203. PASSWORD: {
  204. title: '口令房',
  205. itemClass: 'item2',
  206. topFlag: ossurl.welfare.passwordIcon,
  207. flag: resource.weal_room_flag2,
  208. btn: resource.weal_btn_2
  209. },
  210. ACHIEVEMENT: {
  211. title: '成就房',
  212. itemClass: 'item3',
  213. topFlag: ossurl.welfare.achieveIcon,
  214. flag: resource.weal_room_flag3,
  215. btn: resource.weal_btn_3
  216. },
  217. EUROPEAN_GAS: {
  218. title: '欧气房',
  219. itemClass: 'item4',
  220. topFlag: ossurl.welfare.europeanIcon,
  221. flag: resource.weal_room_flag4,
  222. btn: resource.weal_btn_4
  223. }
  224. }
  225. export default {
  226. mixins: [loginMixin],
  227. components: { join, poster, goodsDetail, winRecord, luckNum },
  228. data() {
  229. return {
  230. TYPE_MAP,
  231. resource,
  232. ossurl,
  233. roomId: null,
  234. title: '',
  235. data: null,
  236. leftTime: 0,
  237. tip: '',
  238. tableData: null,
  239. shareId: null,
  240. scrollTop: 0
  241. }
  242. },
  243. computed: {
  244. statusBarHeight() {
  245. if (this.$store.state.systemInfo) {
  246. return this.$store.state.systemInfo.statusBarHeight
  247. }
  248. return 20
  249. },
  250. headerBg() {
  251. return this.scrollTop > 0 ? '#fff' : 'transparent'
  252. },
  253. supportShare() {
  254. let systemInfo = this.$store.state.systemInfo
  255. if (!systemInfo) return false
  256. return this.$common.compareVersion(systemInfo.SDKVersion, '2.14.3') >= 0
  257. },
  258. itemWidth() {
  259. let width = this.$store.state.systemInfo.screenWidth
  260. width = (width - 28 - 28 - 20) / 3
  261. let height = (132 / 100) * width
  262. return { width, height }
  263. },
  264. scrollHeight() {
  265. let height = this.$store.state.systemInfo.screenHeight
  266. let statusBarHeight = this.$store.state.systemInfo.statusBarHeight
  267. return height - (statusBarHeight + 36) - 123 - 48 - 34 - (25 + 44) - 118
  268. },
  269. leftTimeStr() {
  270. if (!this.data || this.data.status != 1) return ''
  271. let second = this.leftTime / 1000
  272. let baseMin = 60
  273. let baseHour = baseMin * 60
  274. let baseDay = baseHour * 24
  275. let str = ''
  276. let hasDay = false
  277. let hasHour = false
  278. if (second >= baseDay) {
  279. str += parseInt(second / baseDay) + '天'
  280. second = second % baseDay
  281. hasDay = true
  282. }
  283. if (second >= baseHour) {
  284. str += parseInt(second / baseHour) + '时'
  285. second = second % baseHour
  286. hasHour = true
  287. }
  288. if (hasDay) {
  289. return str
  290. }
  291. if (second >= baseMin) {
  292. str += parseInt(second / baseMin) + '分'
  293. second = second % baseMin
  294. }
  295. if (hasHour) {
  296. return str
  297. }
  298. if (parseInt(second) > 0) {
  299. str += parseInt(second) + '秒'
  300. }
  301. return str
  302. },
  303. user() {
  304. return this.$store.state.userInfo
  305. }
  306. },
  307. onPageScroll(e) {
  308. this.scrollTop = e.scrollTop
  309. },
  310. onLoad(options) {
  311. if (options.scene) {
  312. var param = options.scene.split('%3A')
  313. this.roomId = param[0]
  314. this.shareId = param[1]
  315. } else {
  316. this.roomId = options.id
  317. this.shareId = options.userId
  318. }
  319. },
  320. mounted() {
  321. setTimeout(() => {
  322. this.getData(true)
  323. }, 100)
  324. },
  325. onUnload() {
  326. this.stopTimer()
  327. },
  328. onShareAppMessage(res) {
  329. return {
  330. title: '参与房间 和我一起免费抢手办吧!',
  331. path: `/pages/weal_detail/index?id=${this.roomId}&userId=${this.user.username}`,
  332. imageUrl: ossurl.welfare.roomShare
  333. }
  334. },
  335. onShareTimeline() {
  336. return {
  337. title: '参与房间 和我一起免费抢手办吧!',
  338. query: `id=${this.roomId}&userId=${this.user.username}`,
  339. imageUrl: ossurl.welfare.roomShare
  340. }
  341. },
  342. methods: {
  343. init() {
  344. this.getData(false)
  345. },
  346. startTimer() {
  347. this.stopTimer()
  348. this.timer = setInterval(() => {
  349. if (this.leftTime <= 0) {
  350. this.getData(false, false)
  351. this.stopTimer()
  352. } else {
  353. this.leftTime -= 1000
  354. }
  355. }, 1000)
  356. },
  357. stopTimer() {
  358. if (this.timer) {
  359. clearInterval(this.timer)
  360. this.timer = null
  361. }
  362. },
  363. async getData(loading = false, loop = true) {
  364. this.stopTimer()
  365. const res = await this.$service.weal.detail({ roomId: this.roomId }, loading)
  366. if (res) {
  367. if (res.participatingList.length > 100) {
  368. res.participatingList = res.participatingList.splice(0, 100)
  369. }
  370. this.data = res
  371. this.tableData =
  372. this.data.status == 1 || this.data.prizeMode == 1
  373. ? this.data.luckRoomGoodsList
  374. : this.data.luckParticipateList
  375. this.title = res.name
  376. if (loop) {
  377. this.leftTime = res.leftTime
  378. if (this.data.status == 1) {
  379. this.startTimer()
  380. } else {
  381. this.stopTimer()
  382. }
  383. }
  384. }
  385. },
  386. async join() {
  387. if (!this.$common.checkLogin()) return
  388. if (!this.data || this.data.status != 1 || this.data.myParticipatedFlag === 1)
  389. return
  390. if (
  391. this.data.type === 'COMMON' ||
  392. this.data.type === 'ACHIEVEMENT' ||
  393. this.data.type === 'EUROPEAN_GAS'
  394. ) {
  395. if (WX_PUSH_MESSAGE_ID && WX_PUSH_MESSAGE_ID.length > 0) {
  396. wx.requestSubscribeMessage({
  397. tmplIds: WX_PUSH_MESSAGE_ID,
  398. success(res) {},
  399. complete: async () => {
  400. throttle.call(this.realJoin)
  401. }
  402. })
  403. } else {
  404. throttle.call(this.realJoin)
  405. }
  406. } else {
  407. this.$refs.joinRef.show()
  408. }
  409. },
  410. async realJoin() {
  411. if (this.data.type === 'ACHIEVEMENT') {
  412. this.$message.showLoading()
  413. const res = await this.$service.weal.join2(this.roomId)
  414. this.$message.hideLoading()
  415. if (res.success) {
  416. this.joinSuccess()
  417. } else {
  418. if (res.code == 996) {
  419. this.$message.alert(res.msg)
  420. } else {
  421. this.$message.error(res.msg)
  422. }
  423. }
  424. } else {
  425. const res = await this.$service.weal.join(this.roomId, null, this.shareId)
  426. if (res) {
  427. this.joinSuccess()
  428. }
  429. }
  430. },
  431. async joinSuccess() {
  432. if (this.data.participateMode == 1) {
  433. this.$message.success('加入成功,请等待房主审核')
  434. } else {
  435. this.$message.success('加入成功')
  436. }
  437. this.getData()
  438. },
  439. share() {
  440. if (!this.data || this.data.myParticipatedFlag !== 1) return
  441. this.tip = `快来和${this.$store.getters.user.nickname}一起免费领手办吧~`
  442. this.$refs.posterRef.share()
  443. },
  444. shareSuccess() {
  445. setTimeout(() => {
  446. // this.$message.success('欧气 +1')
  447. }, 200)
  448. },
  449. showGoodsDetail(item) {
  450. if (!item.spu) return
  451. this.$refs.goodsDetailRef.show(item.spu)
  452. },
  453. winRecord() {
  454. this.$refs.winRecordRef.show(this.roomId)
  455. },
  456. myLuckNum(type) {
  457. this.$refs.luckNumRef.show(type, this.roomId)
  458. },
  459. back() {
  460. this.$router.back()
  461. }
  462. }
  463. }
  464. </script>
  465. <style></style>
  466. <style lang="scss" scoped>
  467. .roomBg {
  468. background-size: 100% auto;
  469. padding-top: 180rpx;
  470. border-radius: 0 0 40rpx 40rpx;
  471. position: relative;
  472. .roomTitle {
  473. font-size: 32rpx;
  474. font-family: Source Han Sans, Source Han Sans;
  475. font-weight: 500;
  476. color: #000000;
  477. line-height: 46rpx;
  478. text-align: center;
  479. font-weight: 500;
  480. }
  481. .roomType {
  482. text-align: center;
  483. padding: 16rpx 0;
  484. .topFlag {
  485. width: 104rpx;
  486. height: 32rpx;
  487. }
  488. }
  489. .description {
  490. font-size: 24rpx;
  491. font-family: Source Han Sans, Source Han Sans;
  492. font-weight: 400;
  493. color: #644b00;
  494. text-align: center;
  495. padding-bottom: 14rpx;
  496. }
  497. .timeBox {
  498. text-align: center;
  499. display: flex;
  500. align-items: center;
  501. justify-content: center;
  502. color: #333;
  503. font-size: 24rpx;
  504. .time {
  505. color: #333;
  506. }
  507. .image {
  508. width: 32rpx;
  509. height: 32rpx;
  510. margin-right: 6rpx;
  511. }
  512. }
  513. }
  514. .numberSignBox,
  515. .recordBtn {
  516. position: absolute;
  517. right: 0;
  518. top: 180rpx;
  519. .image {
  520. width: 184rpx;
  521. height: 68rpx;
  522. }
  523. }
  524. .cardBox {
  525. display: flex;
  526. padding: 0 20rpx;
  527. padding-top: 40rpx;
  528. .cardTitle {
  529. font-size: 40rpx;
  530. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  531. font-weight: 700;
  532. color: #000000;
  533. line-height: 40rpx;
  534. min-width: 160rpx;
  535. padding-right: 40rpx;
  536. .cardNum {
  537. padding-top: 28rpx;
  538. font-size: 24rpx;
  539. font-family: Arial, Arial;
  540. font-weight: 400;
  541. color: #333;
  542. line-height: 28rpx;
  543. }
  544. }
  545. .cardList {
  546. flex: 1;
  547. }
  548. }
  549. .dataList {
  550. .item {
  551. display: inline-block;
  552. width: 164rpx;
  553. height: 206rpx;
  554. background-color: #fff;
  555. border-radius: 12rpx;
  556. position: relative;
  557. padding: 10rpx;
  558. margin-right: 20rpx;
  559. margin-bottom: 20rpx;
  560. .itemImage {
  561. width: 144rpx;
  562. height: 146rpx;
  563. background: #fff0c0;
  564. border-radius: 12rpx 12rpx 12rpx 12rpx;
  565. }
  566. .text {
  567. font-size: 24rpx;
  568. }
  569. .num {
  570. width: 36rpx;
  571. height: 32rpx;
  572. background-size: 100% 100%;
  573. font-size: 20rpx;
  574. font-family: Arial, Arial;
  575. font-weight: 400;
  576. color: #ffffff;
  577. line-height: 32rpx;
  578. text-align: center;
  579. position: absolute;
  580. right: 0;
  581. top: 0;
  582. }
  583. &:nth-child(3n) {
  584. margin-right: 0;
  585. }
  586. .user {
  587. .avatar {
  588. position: absolute;
  589. top: -40rpx;
  590. width: 64rpx;
  591. height: 64rpx;
  592. opacity: 1;
  593. border: 4rpx solid #ffe996;
  594. border-radius: 50%;
  595. }
  596. .nickname {
  597. padding-top: 40rpx;
  598. }
  599. .sign {
  600. background: rgba(254, 196, 51, 0.16);
  601. padding: 4rpx 8rpx;
  602. border-radius: 8rpx;
  603. margin-top: 4rpx;
  604. }
  605. position: absolute;
  606. left: 0;
  607. right: 0;
  608. bottom: 0;
  609. background: rgba(0, 0, 0, 0.9);
  610. color: #fec433;
  611. border-radius: 12rpx;
  612. padding: 8rpx;
  613. }
  614. }
  615. }
  616. .pagae-nav {
  617. position: fixed;
  618. left: 0;
  619. top: 0;
  620. width: 100%;
  621. z-index: 100;
  622. align-items: center;
  623. .title {
  624. font-size: 32rpx;
  625. font-weight: bold;
  626. text-align: center;
  627. line-height: 72rpx;
  628. width: 500rpx;
  629. }
  630. .back {
  631. z-index: 1800;
  632. font-size: 32rpx;
  633. line-height: 32rpx;
  634. position: absolute;
  635. left: 20rpx;
  636. top: 24rpx;
  637. }
  638. }
  639. .people-wrapper {
  640. position: relative;
  641. padding: 0 20rpx;
  642. border-radius: 16rpx;
  643. display: flex;
  644. padding-top: 50rpx;
  645. .peopleNum {
  646. font-size: 40rpx;
  647. font-family: Alimama ShuHeiTi, Alimama ShuHeiTi;
  648. font-weight: 700;
  649. color: #000000;
  650. line-height: 40rpx;
  651. padding-right: 40rpx;
  652. min-width: 160rpx;
  653. .num {
  654. font-size: 24rpx;
  655. font-family: Arial, Arial;
  656. font-weight: 400;
  657. color: #999999;
  658. line-height: 28rpx;
  659. padding-top: 28rpx;
  660. }
  661. }
  662. .peopleList {
  663. .item {
  664. display: inline-block;
  665. padding: 0 18px;
  666. margin-bottom: 40rpx;
  667. image {
  668. width: 30px;
  669. height: 30px;
  670. // border-radius: 15px;
  671. border-radius: 50%;
  672. border: 4rpx solid #FFE957;
  673. }
  674. .text {
  675. width: 30px;
  676. font-size: 10px;
  677. text-align: center;
  678. padding-top: 8px;
  679. }
  680. }
  681. }
  682. }
  683. .bottom {
  684. padding: 0 14px;
  685. position: fixed;
  686. bottom: 25px;
  687. left: 0;
  688. right: 0;
  689. .bottomTimeBox {
  690. text-align: center;
  691. display: flex;
  692. justify-content: center;
  693. font-size: 24rpx;
  694. color: #333;
  695. .time {
  696. color: #333;
  697. }
  698. }
  699. .btnBox {
  700. display: flex;
  701. align-items: center;
  702. justify-content: center;
  703. padding-top: 26rpx;
  704. }
  705. .btn {
  706. height: 64rpx;
  707. // background: #fec433;
  708. line-height: 64rpx;
  709. font-size: 28rpx;
  710. font-family: Source Han Sans, Source Han Sans;
  711. font-weight: 400;
  712. color: #000000;
  713. text-align: center;
  714. flex: 1;
  715. border: none;
  716. border-radius: 32rpx;
  717. max-width: 426rpx;
  718. }
  719. .addBtn {
  720. background: #fff7e3;
  721. }
  722. }
  723. .group-wrapper {
  724. width: 200rpx;
  725. height: 50rpx;
  726. position: relative;
  727. overflow: hidden;
  728. margin-right: 20rpx;
  729. .btn {
  730. position: absolute;
  731. left: 0;
  732. top: 0;
  733. width: 200rpx;
  734. height: 50rpx;
  735. background: linear-gradient(270deg, #2affff 0%, #4d70f2 100%);
  736. border-radius: 25rpx;
  737. text-align: center;
  738. font-size: 28rpx;
  739. }
  740. .group-btn {
  741. position: absolute;
  742. left: 0;
  743. top: 0;
  744. right: 0;
  745. bottom: 0;
  746. opacity: 0;
  747. }
  748. }
  749. .filter-wrapper {
  750. width: 226rpx;
  751. height: 72rpx;
  752. position: relative;
  753. overflow: hidden;
  754. .image {
  755. position: absolute;
  756. left: 0;
  757. top: 0;
  758. width: 226rpx;
  759. height: 72rpx;
  760. }
  761. .group-btn {
  762. position: absolute;
  763. left: 0;
  764. top: 0;
  765. right: 0;
  766. bottom: 0;
  767. opacity: 0;
  768. }
  769. }
  770. </style>