index.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <template>
  2. <page :nav="false" ref="pageRef" class="relative">
  3. <view
  4. class="wrapper"
  5. :style="
  6. active == 0
  7. ? 'background-color:#fff'
  8. : active == 1
  9. ? 'background-image:url(' + ossurl.welfare.toysBg + ')'
  10. : 'background-image:url(' + ossurl.welfare.blessings.blessingsBg + ')'
  11. "
  12. >
  13. <view
  14. class="pagae-nav"
  15. :style="{ paddingTop: statusBarHeight + 'px', background: headerBg }"
  16. >
  17. <view class="flex-column-align-center nav-title">福利</view>
  18. </view>
  19. <view style="height: 72rpx"></view>
  20. <view
  21. class="tabs flex-align"
  22. :style="{ top: statusBarHeight + 36 + 'px', background: headerBg }"
  23. >
  24. <view
  25. v-for="(item, index) in tabData"
  26. :key="item.value"
  27. class="marginR15 tabItem"
  28. :class="{ active: active == index }"
  29. @click="changeActive(item)"
  30. >
  31. <image class="image" :src="active == index ? item.activeIcon : item.icon" />
  32. </view>
  33. </view>
  34. <view>
  35. <room
  36. v-if="active >= 0 && tabData[active].value === 'room'"
  37. ref="room"
  38. :statusBarHeight="statusBarHeight"
  39. />
  40. <wish
  41. v-else-if="active >= 0 && tabData[active].value === 'wish'"
  42. :statusBarHeight="statusBarHeight"
  43. />
  44. <activity
  45. v-else-if="active >= 0 && tabData[active].value === 'activity'"
  46. :statusBarHeight="statusBarHeight"
  47. :activityId="activityId"
  48. />
  49. <catch-doll
  50. v-else-if="active >= 0 && tabData[active].value === 'claw'"
  51. :statusBarHeight="statusBarHeight"
  52. />
  53. </view>
  54. </view>
  55. </page>
  56. </template>
  57. <script>
  58. import loginMixin from '@/mixin/login'
  59. import room from './room'
  60. import topic from './topic'
  61. import reel from './reel'
  62. import wish from './wish'
  63. import activity from './activity'
  64. import catchDoll from './catchDoll'
  65. import store from '@/store'
  66. import { SET_PID } from '@/store/mutation-types'
  67. import ossurl from '@/utils/ossurl'
  68. const TAB_DATA = [
  69. {
  70. icon: ossurl.welfare.room,
  71. activeIcon: ossurl.welfare.roomActive,
  72. value: 'room',
  73. name: '房间'
  74. }
  75. ]
  76. const TAB_DATA_HIDE = [
  77. {
  78. icon: ossurl.welfare.room,
  79. activeIcon: ossurl.welfare.roomActive,
  80. value: 'room',
  81. name: '房间'
  82. },
  83. // {
  84. // icon: ossurl.welfare.toysIcon,
  85. // activeIcon: ossurl.welfare.toysActive,
  86. // value: 'claw',
  87. // name: '扭蛋机'
  88. // },
  89. {
  90. icon: ossurl.welfare.wish,
  91. activeIcon: ossurl.welfare.wishActive,
  92. value: 'wish',
  93. name: '祈福'
  94. }
  95. ]
  96. const TAB_DATA_HIDE2 = [
  97. {
  98. icon: ossurl.welfare.room,
  99. activeIcon: ossurl.welfare.roomActive,
  100. value: 'room',
  101. name: '房间'
  102. },
  103. {
  104. icon: ossurl.welfare.toysIcon,
  105. activeIcon: ossurl.welfare.toysActive,
  106. value: 'claw',
  107. name: '扭蛋机'
  108. },
  109. {
  110. icon: ossurl.welfare.wish,
  111. activeIcon: ossurl.welfare.wishActive,
  112. value: 'wish',
  113. name: '祈福'
  114. }
  115. ]
  116. export default {
  117. components: { room, topic, reel, wish, activity, catchDoll },
  118. mixins: [loginMixin],
  119. data() {
  120. return {
  121. ossurl,
  122. active: 0,
  123. activityId: null,
  124. showRedFloat: false,
  125. scrollTop: 0,
  126. userInfo: null,
  127. roomNdj: false
  128. }
  129. },
  130. computed: {
  131. statusBarHeight() {
  132. if (this.$store.state.systemInfo) {
  133. return this.$store.state.systemInfo.statusBarHeight
  134. }
  135. return 20
  136. },
  137. tabData() {
  138. console.log('数据', !this.$store.state.hide? this.roomNdj? TAB_DATA_HIDE2: TAB_DATA_HIDE: TAB_DATA);
  139. return !this.$store.state.hide? this.roomNdj? TAB_DATA_HIDE2: TAB_DATA_HIDE: TAB_DATA
  140. },
  141. headerBg() {
  142. return this.scrollTop > 0 ? '#fff' : 'transparent'
  143. }
  144. },
  145. onPageScroll(e) {
  146. this.scrollTop = e.scrollTop
  147. },
  148. onShow(option) {
  149. console.log("tabData", this.tabData);
  150. this.getParamConfig()
  151. this.getUser()
  152. if (!!getApp().globalData.wealActive || getApp().globalData.wealActive === 0) {
  153. this.active = getApp().globalData.wealActive
  154. getApp().globalData = {}
  155. }
  156. this.refresh()
  157. },
  158. mounted() {
  159. this.loadActivity()
  160. },
  161. onTabItemTap() {
  162. this.loadActivity()
  163. },
  164. onShareAppMessage(res) {
  165. return {
  166. title: '超多羊毛快来薅',
  167. path: '/pages/weal/index'
  168. }
  169. },
  170. onShareTimeline() {
  171. return {
  172. title: '超多羊毛快来薅'
  173. }
  174. },
  175. methods: {
  176. async getParamConfig() {
  177. const res = await this.$service.user.getParamConfig('room_ndj')
  178. this.roomNdj = res.state != 0
  179. },
  180. async getUser() {
  181. const res = await this.$service.user.getInfo()
  182. this.userInfo = res
  183. },
  184. async loadActivity() {
  185. this.getActivity()
  186. const res = await this.$service.weal.activityTab()
  187. if (res) {
  188. this.activityId = res.id
  189. } else {
  190. }
  191. },
  192. changeActive(item) {
  193. for (let i = 0; i < this.tabData.length; i++) {
  194. if (this.tabData[i].value === item.value) {
  195. this.active = i
  196. break
  197. }
  198. }
  199. },
  200. init() {
  201. let active = this.active
  202. this.active = -1
  203. this.$nextTick(() => {
  204. this.active = active
  205. })
  206. },
  207. refresh() {
  208. if (this.active < 0) return
  209. if (this.tabData[this.active].value === 'room') {
  210. this.$refs.room && this.$refs.room.refresh()
  211. } else if (this.tabData[this.active].value === 'reel') {
  212. this.$refs.reel && this.$refs.reel.init()
  213. }
  214. },
  215. async getActivity() {
  216. const res = await this.$service.weal.redPacketRainInfo()
  217. this.showRedFloat = !!res
  218. }
  219. }
  220. }
  221. </script>
  222. <style></style>
  223. <style lang="scss" scoped>
  224. .wrapper {
  225. min-height: 100vh;
  226. background-size: 100% 100%;
  227. background-repeat: no-repeat;
  228. }
  229. .pagae-nav {
  230. width: 100%;
  231. position: fixed;
  232. left: 0;
  233. right: 0;
  234. z-index: 100;
  235. .nav-title {
  236. height: 80rpx;
  237. font-size: 32rpx;
  238. font-family: Source Han Sans, Source Han Sans;
  239. font-weight: bold;
  240. color: #000000;
  241. }
  242. }
  243. .tabs {
  244. position: fixed;
  245. left: 0;
  246. right: 0;
  247. z-index: 100;
  248. padding: 12rpx 20rpx;
  249. .tabItem {
  250. color: rgba(0, 0, 0, 0.5);
  251. font-size: 32rpx;
  252. text-align: center;
  253. .image {
  254. width: 158rpx;
  255. height: 58rpx;
  256. }
  257. }
  258. }
  259. .bg {
  260. position: fixed;
  261. z-index: -1;
  262. left: 0;
  263. right: 0;
  264. top: 0;
  265. width: 100%;
  266. height: 100%;
  267. opacity: 0.3;
  268. }
  269. .red-float {
  270. position: fixed;
  271. right: 10rpx;
  272. bottom: 500rpx;
  273. width: 116rpx;
  274. height: 86rpx;
  275. animation: red 0.5s linear infinite;
  276. }
  277. @keyframes red {
  278. 0% {
  279. transform: rotateZ(-10deg);
  280. }
  281. 25% {
  282. transform: rotateZ(0deg);
  283. }
  284. 50% {
  285. transform: rotateZ(10deg);
  286. }
  287. 75% {
  288. transform: rotateZ(0deg);
  289. }
  290. 100% {
  291. transform: rotateZ(-10deg);
  292. }
  293. }
  294. </style>