room.vue 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698
  1. <template>
  2. <view class="container">
  3. <scroll-view
  4. class="scroll-wrapper"
  5. :scroll-y="true"
  6. refresher-enabled
  7. refresher-default-style="white"
  8. @refresherrefresh="pullRefresh"
  9. :refresher-triggered="refreshing"
  10. @scrolltolower="loadMore"
  11. >
  12. <view class="search-wrapper flex-align">
  13. <view class="searchInput">
  14. <input
  15. v-model="searchVal"
  16. class="uni-input flex1 marginX10"
  17. placeholder="输入房间名称"
  18. confirm-type="search"
  19. @confirm="search()"
  20. />
  21. <text class="cuIcon-search"></text>
  22. </view>
  23. <view class="btnList">
  24. <view class="fun-wrapper flex-align-between">
  25. <view
  26. class="funItem"
  27. @click="$router.pushCheck('weal_create_list')"
  28. v-if="permission && permission.roomConfig !== 0"
  29. >
  30. <image :src="ossurl.welfare.add" style="width: 36rpx; height: 36rpx" />
  31. <view class="funItemTitle">创建</view>
  32. </view>
  33. <view class="funItem" @click="$router.pushCheck('weal_record')">
  34. <image :src="ossurl.welfare.mine" style="width: 36rpx; height: 36rpx" />
  35. <view class="funItemTitle">我的</view>
  36. </view>
  37. <view class="funItem" @click="$refs.ruleRef.show()">
  38. <image
  39. :src="ossurl.welfare.playMethod"
  40. style="width: 36rpx; height: 36rpx"
  41. />
  42. <view class="funItemTitle">玩法</view>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <!-- <view class="roomTypeList">
  48. <view
  49. class="roomTypeItem"
  50. v-for="item of roomTab"
  51. :key="item.value"
  52. @click="handleChangeType(item)"
  53. >
  54. <image
  55. :src="type == item.value ? item.active : item.normal"
  56. style="width: 130rpx; height: 176rpx"
  57. />
  58. </view>
  59. </view> -->
  60. <!-- <view class="roomTypeListSection">
  61. <view class="center fx-c-s">
  62. <view class="item" v-for="item of roomTab" :key="item.value" @click="handleChangeType(item)">
  63. <text>{{ item.name }}</text>
  64. </view>
  65. </view>
  66. </view> -->
  67. <view class="p30">
  68. <view class="roomTypeListSection fx-c-s">
  69. <view class="item fx-c-c" :class="{'on':tabIndex == index}" v-for="(item,index) in roomTab" :key="item.value" @click="handleChangeType(item, index)">
  70. <text>{{ item.name }}</text>
  71. </view>
  72. </view>
  73. </view>
  74. <!-- <view class="roomSection">
  75. <view class="center">
  76. <view class="item">
  77. </view>
  78. </view>
  79. </view> -->
  80. <view class="roomSection p30 fx-c-s-w">
  81. <view class="item" v-for="(item,index) in tableData" @click="showDetail(item)" :key="index" :style="'background: url(' + ossurl.welfare.itembj + ') no-repeat; background-size: 100% 100%;'">
  82. <view class="top fx-c-s">
  83. <view class="l fx-c">
  84. <image :src="item.cover" class="userImg" style="width: 32rpx;" mode="widthFix"/>
  85. <view class="nickname">
  86. {{ item.user.nickname }}
  87. </view>
  88. </view>
  89. <view class="r">
  90. <text>{{ TYPE_MAP[item.type].name }}</text>
  91. </view>
  92. </view>
  93. <view class="img">
  94. <!-- <image src="https://cdn.magicmart.vip/magic/image/magic_1686382300000.png" style="width: 80%; margin: 0 auto;" mode="widthFix"/> -->
  95. <swiper
  96. class="moli-swiper"
  97. :indicator-dots="false"
  98. circular="true"
  99. :autoplay="true"
  100. interval="5000"
  101. duration="500"
  102. >
  103. <swiper-item
  104. v-for="(obj, objIndex) in item.luckRoomGoodsList.slice(0, 3)"
  105. :key="index"
  106. >
  107. <image
  108. :key="objIndex"
  109. :src="obj.spu.cover"
  110. mode="aspectFit"
  111. class="item-cover"
  112. />
  113. </swiper-item>
  114. </swiper>
  115. </view>
  116. <view class="text">
  117. <text>共{{ item.goodsQuantity }}件商品</text>
  118. <text>{{ item.name }}</text>
  119. </view>
  120. </view>
  121. </view>
  122. <!-- <view class="roomList" style="padding: 0 9px">
  123. <view
  124. v-for="(item, index) in tableData"
  125. @click="showDetail(item)"
  126. :key="index"
  127. class="roomItem"
  128. :style="{ backgroundImage: 'url(' + ossurl.welfare.roomBg + ')' }"
  129. >
  130. <view class="luckRoomGoodList">
  131. <swiper
  132. class="moli-swiper"
  133. :indicator-dots="false"
  134. circular="true"
  135. :autoplay="true"
  136. interval="5000"
  137. duration="500"
  138. >
  139. <swiper-item
  140. v-for="(obj, objIndex) in item.luckRoomGoodsList.slice(0, 3)"
  141. :key="index"
  142. >
  143. <image
  144. :key="objIndex"
  145. :src="obj.spu.cover"
  146. mode="aspectFit"
  147. class="item-cover"
  148. />
  149. </swiper-item>
  150. </swiper>
  151. </view>
  152. <view class="infoBox">
  153. <view class="roomName">
  154. {{ item.name }}
  155. </view>
  156. <view class="roomType">
  157. <image :src="TYPE_MAP[item.type].topFlag" class="flag-top" />
  158. <view class="luckSize">{{ item.goodsQuantity }}件赠品</view>
  159. </view>
  160. <view class="roomInfo">
  161. <view class="roomUser">
  162. <image :src="item.cover" mode="scaleToFill" class="icon" />
  163. <view class="nickname">
  164. {{ item.user.nickname }}
  165. </view>
  166. </view>
  167. <view class="roomUserAvatar"></view>
  168. <view class="fire">
  169. <image
  170. :src="ossurl.welfare.fire"
  171. mode="scaleToFill"
  172. class="fireIcon"
  173. />
  174. {{ item.participatingList.length }}
  175. </view>
  176. </view>
  177. </view>
  178. <image
  179. v-if="item.officialFlag == 1"
  180. :src="ossurl.welfare.official"
  181. webp
  182. class="official"
  183. />
  184. <image
  185. v-if="item.prizeMode === 1"
  186. :src="ossurl.welfare.must"
  187. class="must-flag"
  188. />
  189. </view>
  190. </view> -->
  191. <empty v-if="isEmpty" :top="180" />
  192. </scroll-view>
  193. <rule ref="ruleRef" />
  194. </view>
  195. </template>
  196. <script>
  197. import pageMixin from './../../mixin/page'
  198. import ossurl from '@/utils/ossurl'
  199. import empty from '../../components/empty.vue'
  200. import rule from './rule'
  201. import Rule from './rule.vue'
  202. import resource from '@/utils/resource'
  203. const TYPE_MAP = {
  204. COMMON: {
  205. name: '福利营',
  206. itemClass: 'item1',
  207. topFlag: ossurl.welfare.welfareIcon,
  208. flag: resource.weal_room_flag1,
  209. btn: resource.weal_btn_1
  210. },
  211. PASSWORD: {
  212. name: '欧气营',
  213. itemClass: 'item2',
  214. topFlag: ossurl.welfare.passwordIcon,
  215. flag: resource.weal_room_flag2,
  216. btn: resource.weal_btn_2
  217. },
  218. ACHIEVEMENT: {
  219. name: '口令营',
  220. itemClass: 'item3',
  221. topFlag: ossurl.welfare.achieveIcon,
  222. flag: resource.weal_room_flag3,
  223. btn: resource.weal_btn_3
  224. },
  225. EUROPEAN_GAS: {
  226. name: '成就营',
  227. itemClass: 'item4',
  228. topFlag: ossurl.welfare.europeanIcon,
  229. flag: resource.weal_room_flag4,
  230. btn: resource.weal_btn_4
  231. }
  232. }
  233. const roomTab = [
  234. {
  235. name: '全部',
  236. value: '',
  237. normal: ossurl.welfare.all,
  238. active: ossurl.welfare.allActive
  239. },
  240. {
  241. name: '福利营',
  242. value: 'COMMON',
  243. normal: ossurl.welfare.welfare,
  244. active: ossurl.welfare.welfareActive
  245. },
  246. {
  247. name: '欧气营',
  248. value: 'EUROPEAN_GAS',
  249. normal: ossurl.welfare.european,
  250. active: ossurl.welfare.europeanActive
  251. },
  252. {
  253. name: '口令营',
  254. value: 'PASSWORD',
  255. normal: ossurl.welfare.password,
  256. active: ossurl.welfare.passwordActive
  257. },
  258. {
  259. name: '成就营',
  260. value: 'ACHIEVEMENT',
  261. normal: ossurl.welfare.achieve,
  262. active: ossurl.welfare.achieveActive
  263. }
  264. ]
  265. const roomTab2 = [
  266. {
  267. name: '全部',
  268. value: '',
  269. normal: ossurl.welfare.all,
  270. active: ossurl.welfare.allActive
  271. },
  272. {
  273. name: '欧气营',
  274. value: 'EUROPEAN_GAS',
  275. normal: ossurl.welfare.european,
  276. active: ossurl.welfare.europeanActive
  277. },
  278. {
  279. name: '成就营',
  280. value: 'ACHIEVEMENT',
  281. normal: ossurl.welfare.achieve,
  282. active: ossurl.welfare.achieveActive
  283. }
  284. ]
  285. export default {
  286. components: { empty, rule, Rule },
  287. mixins: [pageMixin],
  288. props: {
  289. statusBarHeight: Number
  290. },
  291. data() {
  292. return {
  293. resource,
  294. TYPE_MAP,
  295. ossurl,
  296. searchVal: '',
  297. refreshing: false,
  298. requesting: false,
  299. isRefreshClear: false,
  300. type: '',
  301. permission: null,
  302. tabIndex: 0
  303. }
  304. },
  305. computed: {
  306. top() {
  307. return this.statusBarHeight + uni.upx2px(72) + 45
  308. },
  309. itemWidth() {
  310. let width = this.$store.state.systemInfo.screenWidth
  311. width = (width - 28 - 20) / 3
  312. let height = (197 / 109) * width
  313. return { width, height }
  314. },
  315. roomTab() {
  316. let arr = [
  317. {
  318. name: '全部',
  319. value: '',
  320. normal: ossurl.welfare.all,
  321. active: ossurl.welfare.allActive
  322. }
  323. ]
  324. if (this.permission && this.permission.roomConfig !== 0) {
  325. arr = [
  326. ...arr,
  327. {
  328. name: '福利营',
  329. value: 'COMMON',
  330. normal: ossurl.welfare.welfare,
  331. active: ossurl.welfare.welfareActive
  332. },
  333. {
  334. name: '口令营',
  335. value: 'PASSWORD',
  336. normal: ossurl.welfare.password,
  337. active: ossurl.welfare.passwordActive
  338. }
  339. ]
  340. }
  341. if (this.permission && this.permission.roomGAS !== 0) {
  342. arr = [
  343. ...arr,
  344. {
  345. name: '欧气营',
  346. value: 'EUROPEAN_GAS',
  347. normal: ossurl.welfare.european,
  348. active: ossurl.welfare.europeanActive
  349. }
  350. ]
  351. }
  352. if (this.permission && this.permission.roomCjf !== 0) {
  353. arr = [
  354. ...arr,
  355. {
  356. name: '成就营',
  357. value: 'ACHIEVEMENT',
  358. normal: ossurl.welfare.achieve,
  359. active: ossurl.welfare.achieveActive
  360. }
  361. ]
  362. }
  363. return arr
  364. }
  365. },
  366. mounted() {
  367. this.refresh(true)
  368. this.getParamConfig()
  369. },
  370. methods: {
  371. async getParamConfig() {
  372. const res = await this.$service.weal.getRoomType()
  373. this.permission = res
  374. },
  375. handleChangeType(item, index) {
  376. this.type = item.value
  377. this.tabIndex = index;
  378. this.refresh(true)
  379. },
  380. search() {
  381. uni.hideKeyboard()
  382. this.refresh(true)
  383. },
  384. pullRefresh() {
  385. this.refreshing = true
  386. this.refresh()
  387. },
  388. async loadData(loading = false) {
  389. this.requesting = true
  390. const res = await this.$service.weal.list(
  391. this.pageNum,
  392. this.pageSize,
  393. this.searchVal,
  394. this.type,
  395. loading
  396. )
  397. setTimeout(() => {
  398. this.refreshing = false
  399. this.requesting = false
  400. }, 1000)
  401. return res
  402. },
  403. showDetail(item) {
  404. this.$router.push('weal_detail', { id: item.id })
  405. }
  406. }
  407. }
  408. </script>
  409. <style lang="scss" scoped>
  410. .roomSection{
  411. padding-bottom: 200rpx;
  412. width: 100%;
  413. .item{
  414. width: 48%;
  415. height: 482rpx;
  416. margin-top: 30rpx;
  417. .top{
  418. .l{
  419. .userImg{
  420. border-radius: 50%;
  421. }
  422. padding-left: 20rpx;
  423. margin-top: 10rpx;
  424. image{
  425. margin-right: 6rpx;
  426. }
  427. text{
  428. width: 150rpx;
  429. display: -webkit-box;
  430. overflow: hidden;
  431. text-overflow: ellipsis;
  432. word-break: break-all;
  433. -webkit-box-orient: vertical;
  434. -webkit-line-clamp: 1;
  435. }
  436. }
  437. .r{
  438. margin-right: 10rpx;
  439. margin-top: -6rpx;
  440. text{
  441. color: #969696;
  442. font-size: 24rpx;
  443. }
  444. }
  445. }
  446. .img{
  447. text-align: center;
  448. }
  449. .text{
  450. text-align: center;
  451. margin-top: 18rpx;
  452. text{
  453. display: block;
  454. &:nth-child(1) {
  455. color: #999;
  456. }
  457. &:nth-child(2) {
  458. color: #000;
  459. font-weight: bold;
  460. font-size: 30rpx;
  461. }
  462. }
  463. }
  464. }
  465. }
  466. .roomTypeListSection{
  467. background: #5a606e;
  468. margin-top: 30rpx;
  469. padding: 8rpx;
  470. border-radius: 8rpx;
  471. .item{
  472. width: 114rpx;
  473. height: 56rpx;
  474. box-sizing: border-box;
  475. border-radius: 8rpx;
  476. text{
  477. color: #b2b6ce;
  478. font-weight: bold;
  479. // font-size: 28rpx;
  480. }
  481. }
  482. .on{
  483. background: #ffea5d;
  484. background-size: 100% 100%;
  485. text{
  486. color: #000;
  487. }
  488. }
  489. }
  490. .container {
  491. padding-top: 172rpx;
  492. }
  493. .scroll-wrapper {
  494. // position: fixed;
  495. height: calc(100vh - 245rpx);
  496. }
  497. .search-wrapper {
  498. padding: 0 0 20rpx;
  499. background-color: #fff;
  500. .searchInput {
  501. height: 64rpx;
  502. background: rgba(228, 228, 228, 0.5);
  503. border-radius: 640rpx 640rpx 640rpx 640rpx;
  504. color: #d0d0d0;
  505. display: flex;
  506. flex: 1;
  507. align-items: center;
  508. padding: 0 24rpx;
  509. input {
  510. flex: 1;
  511. color: #000;
  512. }
  513. }
  514. }
  515. .free-flag {
  516. width: 100%;
  517. height: 182rpx;
  518. }
  519. .fun-wrapper {
  520. text-align: center;
  521. .funItem {
  522. flex: 1;
  523. padding: 0 16rpx;
  524. font-size: 20rpx;
  525. font-family: Source Han Sans, Source Han Sans;
  526. font-weight: 350;
  527. color: #1e1e1e;
  528. }
  529. }
  530. .record,
  531. .cRecord,
  532. .create {
  533. width: 76rpx;
  534. height: 86rpx;
  535. position: fixed;
  536. right: 26rpx;
  537. }
  538. .record {
  539. bottom: 436rpx;
  540. }
  541. .roomList {
  542. .roomItem {
  543. background-color: #fffdf6;
  544. background-size: auto 100%;
  545. background-position: right;
  546. background-repeat: no-repeat;
  547. padding: 20rpx;
  548. margin-bottom: 20rpx;
  549. border-radius: 20rpx;
  550. display: flex;
  551. width: 100%;
  552. position: relative;
  553. box-shadow: 0rpx 4rpx 6rpx 0rpx rgba(143, 138, 126, 0.12);
  554. .must-flag {
  555. position: absolute;
  556. top: 0;
  557. left: 0;
  558. width: 102rpx;
  559. height: 102rpx;
  560. }
  561. .luckRoomGoodList {
  562. background-color: #fff;
  563. width: 160rpx;
  564. height: 160rpx;
  565. }
  566. .roomName {
  567. font-size: 28rpx;
  568. font-family: Source Han Sans, Source Han Sans;
  569. font-weight: 350;
  570. color: #000000;
  571. line-height: 40rpx;
  572. }
  573. .infoBox {
  574. flex: 1;
  575. }
  576. .item-cover {
  577. width: 164rpx;
  578. height: 164rpx;
  579. }
  580. .roomType {
  581. display: flex;
  582. align-items: center;
  583. padding: 14rpx 0 24rpx 0;
  584. .flag-top {
  585. width: 104rpx;
  586. height: 32rpx;
  587. }
  588. .luckSize {
  589. background: #fff3d5;
  590. font-size: 20rpx;
  591. font-family: Source Han Sans, Source Han Sans;
  592. font-weight: 350;
  593. color: #e8ad00;
  594. line-height: 28rpx;
  595. padding: 2rpx 24rpx;
  596. height: 32rpx;
  597. border-radius: 16rpx;
  598. margin-left: 20rpx;
  599. }
  600. }
  601. .roomInfo {
  602. display: flex;
  603. align-items: center;
  604. justify-content: space-between;
  605. }
  606. .roomUser {
  607. display: flex;
  608. align-items: center;
  609. font-size: 24rpx;
  610. font-family: Source Han Sans, Source Han Sans;
  611. font-weight: 300;
  612. color: #666666;
  613. width: 130rpx;
  614. .icon {
  615. width: 32rpx;
  616. min-width: 32rpx;
  617. height: 32rpx;
  618. border-radius: 50%;
  619. margin-right: 10rpx;
  620. }
  621. .nickname {
  622. width: 88rpx;
  623. text-overflow: ellipsis;
  624. overflow: hidden;
  625. white-space: nowrap;
  626. }
  627. }
  628. .roomUserAvatar {
  629. background: linear-gradient(90deg, #fff1e6 0%, #fff6cd 100%);
  630. border-radius: 24rpx;
  631. padding: 8rpx 16rpx;
  632. padding-left: 26rpx;
  633. .cu-avatar-group {
  634. padding: 0;
  635. }
  636. .avatar {
  637. width: 32rpx;
  638. height: 32rpx;
  639. border-radius: 50%;
  640. }
  641. .cu-avatar {
  642. width: 32rpx;
  643. height: 32rpx;
  644. border-radius: 50%;
  645. border: none;
  646. margin-left: -10rpx;
  647. }
  648. }
  649. .fire {
  650. display: flex;
  651. align-items: center;
  652. font-size: 24rpx;
  653. font-family: Arial, Arial;
  654. font-weight: 400;
  655. color: #000000;
  656. .fireIcon {
  657. width: 32rpx;
  658. height: 32rpx;
  659. }
  660. }
  661. .official {
  662. height: 34rpx;
  663. width: 86rpx;
  664. position: absolute;
  665. right: 0;
  666. top: 0;
  667. }
  668. }
  669. }
  670. .roomTypeList {
  671. display: flex;
  672. justify-content: flex-start;
  673. background: #fff;
  674. padding: 20rpx 0;
  675. .roomTypeItem {
  676. margin: 0 6rpx;
  677. }
  678. }
  679. </style>