index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380
  1. <template>
  2. <page light title="源力烟花年" ref="pageRef" nav-color="transparent">
  3. <view class="fireworks-bg flex-column">
  4. <image :src="resource.fireworks_bg" class="fireworks-bg2" mode="widthFix" />
  5. <view :style="{height: (statusBarHeight + 32) + 'px'}"></view>
  6. <view class="paddingT30 text-center">
  7. <view class="color-white font5 bold">
  8. 集材料瓜分<text class="font15 bold" style="color:#FF5055">8888</text>现金
  9. </view>
  10. <view class="color-white font5 bold">High翻!超级烟花年</view>
  11. </view>
  12. <view class="flex1 flex-column-align-center relative">
  13. <view v-if="tableData && tableData.length > 0" class="relative width100">
  14. <swiper v-if="!hasAmount" class="card-swiper" @change="changeSwiper" :current="active">
  15. <swiper-item v-for="(item, index) in tableData" class="height100" :key="item.id"
  16. :class="[active == index ? 'cur' : '']">
  17. <view v-if="item.id != -1" class="swiper-item" :class="[item.num > 0 && 'active']">
  18. <view style="height: 170rpx" class="flex-align-center font10 color-white bold">
  19. {{item.name}}
  20. </view>
  21. <view class="flex-align-center">
  22. <image :src="item.cover" style="width: 300rpx; height: 300rpx;" mode="aspectFit"></image>
  23. </view>
  24. <view v-if="item.num > 0" class="flex-align-center paddingT20">
  25. <view class="welcome flex-align-center">{{item.greeting}}</view>
  26. </view>
  27. </view>
  28. <view v-else class="swiper-item ">
  29. <image :src="resource.fireworks_item_bg_big" class="swiper-item-bg" />
  30. <view class="flex-column-align-center paddingT35 relative">
  31. <image :src="resource.logo" style="width: 90rpx; height: 90rpx" />
  32. <view class="font8 bold paddingT18" style="color: #B55C26">祝您福气满满!</view>
  33. </view>
  34. <view class="play translateX">
  35. <view class="relative width100 height100 flex-align-center">
  36. <image :src="resource.fireworks_play" class="image" />
  37. <view class="bold color-white font18 relative">
  38. {{ total }}
  39. </view>
  40. </view>
  41. </view>
  42. <view class="complete translateX relative">已合成,1月30日18时开奖</view>
  43. </view>
  44. </swiper-item>
  45. </swiper>
  46. <view v-else class="card-swiper flex-align-center" style="margin-top: -200rpx">
  47. <view class="swiper-item ">
  48. <image :src="resource.fireworks_item_bg_big2" class="swiper-item-bg" />
  49. <view class="flex-column-align-center paddingT35 relative">
  50. <image :src="resource.logo" style="width: 90rpx; height: 90rpx" />
  51. <view class="font8 bold paddingT18" style="color: #B55C26">祝您福气满满!</view>
  52. </view>
  53. <view v-if="total > 1" class="money translateXY relative marginT20" style="font-size: 70rpx">{{ amount }}元 x
  54. {{ total > 3 ? 3 : total }}</view>
  55. <view v-else-if="total == 1" class="money translateXY relative marginT20">{{ amount }}元 </view>
  56. <view v-else style="color: #B55C26" class="relative paddingX20 paddingT20">您暂未合成烟花,无法获得奖励</view>
  57. </view>
  58. </view>
  59. <view v-if="!hasAmount" class="flex-align-center paddingT40">
  60. <image :src="resource.fireworks_collection" style="width: 250rpx; height: 70rpx" @click="$router.index()" />
  61. </view>
  62. </view>
  63. </view>
  64. <view v-if="!hasAmount && tableData && tableData.length > 0" class="paddingB35">
  65. <scroll-view v-if="tableData.length > 5 " scroll-x class="scroll-wrapper paddingL14">
  66. <view v-for="(item, index) in tableData" :key="item.id" class="item" @click="changeActive(index)">
  67. <view class="top">
  68. <image v-if="active === index" :src="resource.fireworks_item_bg" class="item-bg" />
  69. <view class="width100 height100 flex-align-center">
  70. <view class="content">
  71. <image v-if="item.id == -1" :src="resource.fireworks_item_light" class="image" />
  72. <image v-else :src="item.num > 0 ? item.light : item.dart" class="image" />
  73. </view>
  74. </view>
  75. <view v-if="item.num > 0" class="badge flex-align-center">
  76. {{ item.num > 99 ? '99' : item.num }}
  77. </view>
  78. </view>
  79. <view class="font7 bold text-center paddingT5" :class="[active == index ? 'color-white' : 'color-un']">
  80. {{item.name}}
  81. </view>
  82. </view>
  83. </scroll-view>
  84. <view v-else class="flex-align-around scroll-wrapper paddingX14">
  85. <view v-for="(item, index) in tableData" :key="item.id" class="item" @click="changeActive(index)">
  86. <view class="top">
  87. <image v-if="active === index" :src="resource.fireworks_item_bg" class="item-bg" />
  88. <view class="width100 height100 flex-align-center">
  89. <view class="content">
  90. <image :src="item.num > 0 ? item.light : item.dart" class="image" />
  91. </view>
  92. </view>
  93. <view v-if="item.num > 0" class="badge flex-align-center">
  94. {{ item.num > 99 ? '99' : item.num }}
  95. </view>
  96. </view>
  97. <view class="font7 bold text-center paddingT5" :class="[active == index ? 'color-white' : 'color-un']">
  98. {{item.name}}
  99. </view>
  100. </view>
  101. </view>
  102. </view>
  103. </view>
  104. <view class="index" @click="$router.index()">首页</view>
  105. <view class="rule" @click="showRule">规则</view>
  106. <rule ref="ruleRef" />
  107. </page>
  108. </template>
  109. <script>
  110. import resource from '@/utils/resource'
  111. import rule from './rule'
  112. const greeting = [
  113. '2023欧气满满',
  114. '2023一发即中',
  115. '2023大吉大利',
  116. '2023水到渠成',
  117. '烟花岁岁爆竹声声',
  118. '燚火漫域祝您新年大吉',
  119. '2023好事发生',
  120. '2023欧皇附体',
  121. '2023水逆退散',
  122. '燚火漫域祝您一路发发发'
  123. ]
  124. export default {
  125. components: { rule },
  126. data() {
  127. return {
  128. resource,
  129. active: 0,
  130. tableData: null,
  131. total: 0,
  132. hasAmount: false,
  133. amount: null
  134. }
  135. },
  136. computed: {
  137. statusBarHeight() {
  138. if (this.$store.state.systemInfo) {
  139. return this.$store.state.systemInfo.statusBarHeight
  140. }
  141. return 20
  142. }
  143. },
  144. onShow() {
  145. this.getData()
  146. },
  147. methods: {
  148. async getData() {
  149. const res = await this.$service.weal.fireworks()
  150. if (!res) {
  151. this.total = 0
  152. this.tableData = null
  153. this.hasAmount = false
  154. this.amount = null
  155. return
  156. }
  157. if (res) {
  158. if (typeof res.amount != 'undefined' || res.amount != null) {
  159. this.hasAmount = true
  160. this.amount = res.amount
  161. }
  162. let map = {}
  163. if (res.myPrizeList) {
  164. res.myPrizeList.forEach((e) => {
  165. let num = map[e.id]
  166. if (!num) {
  167. map[e.id] = 1
  168. } else {
  169. map[e.id] = num + 1
  170. }
  171. })
  172. }
  173. let total = []
  174. if (res.prizeList) {
  175. const arrays = this.$common.shuffle(greeting)
  176. res.prizeList.forEach((item, index) => {
  177. if (item.pic) {
  178. let array = item.pic.split(',')
  179. item.dart = array[0]
  180. if (array.length > 1) {
  181. item.light = array[1]
  182. } else {
  183. item.light = array[0]
  184. }
  185. }
  186. item.greeting = arrays[index]
  187. item.num = map[item.id] || 0
  188. total.push(item.num)
  189. })
  190. }
  191. this.total = Math.min(...total)
  192. if (this.total > 0) {
  193. res.prizeList.unshift({
  194. id: -1,
  195. name: '烟花',
  196. num: this.total
  197. })
  198. }
  199. this.tableData = res.prizeList
  200. }
  201. },
  202. changeSwiper(e) {
  203. this.changeActive(e.detail.current)
  204. },
  205. changeActive(index) {
  206. this.active = index
  207. },
  208. showRule() {
  209. this.$refs.ruleRef.show()
  210. }
  211. }
  212. }
  213. </script>
  214. <style lang="scss" scoped>
  215. .fireworks-bg {
  216. position: fixed;
  217. left: 0;
  218. right: 0;
  219. top: 0;
  220. bottom: 0;
  221. background: linear-gradient(180deg, #1b033f 0%, #5d3374 100%);
  222. // z-index: -1;
  223. }
  224. .fireworks-bg2 {
  225. position: fixed;
  226. left: 0;
  227. right: 0;
  228. top: 170rpx;
  229. width: 100%;
  230. height: 0;
  231. z-index: -1;
  232. }
  233. .index {
  234. position: fixed;
  235. top: 180rpx;
  236. right: 0;
  237. width: 96rpx;
  238. height: 48rpx;
  239. background: linear-gradient(315deg, #0bd1ce 0%, #3ba1ff 100%);
  240. border-radius: 200rpx 0px 0px 200rpx;
  241. line-height: 48rpx;
  242. text-align: center;
  243. color: #fff;
  244. font-size: 28rpx;
  245. z-index: 100;
  246. }
  247. .rule {
  248. position: fixed;
  249. top: 260rpx;
  250. right: 0;
  251. width: 96rpx;
  252. height: 48rpx;
  253. background: linear-gradient(315deg, #ff345a 0%, #ffa25e 100%);
  254. border-radius: 200rpx 0px 0px 200rpx;
  255. line-height: 48rpx;
  256. text-align: center;
  257. color: #fff;
  258. font-size: 28rpx;
  259. z-index: 100;
  260. }
  261. .card-swiper {
  262. height: 650rpx !important;
  263. .swiper-item,
  264. .swiper-item2 {
  265. padding: 0;
  266. width: 466rpx;
  267. position: relative;
  268. height: 627rpx;
  269. border-radius: 40rpx;
  270. }
  271. .swiper-item {
  272. background: linear-gradient(180deg, #9033ad 0%, #fecca5 100%);
  273. &.active {
  274. background: linear-gradient(180deg, #fb4433 0%, #f8b5a9 100%);
  275. }
  276. .welcome {
  277. width: 365rpx;
  278. height: 58rpx;
  279. border-radius: 29rpx;
  280. background: #f98779;
  281. font-size: 28rpx;
  282. color: #fff;
  283. }
  284. .play {
  285. position: absolute;
  286. bottom: 106rpx;
  287. width: 200rpx;
  288. height: 200rpx;
  289. .image {
  290. position: absolute;
  291. left: 0;
  292. top: 0;
  293. width: 200rpx;
  294. height: 200rpx;
  295. }
  296. }
  297. .money {
  298. position: absolute;
  299. color: #ff5055;
  300. font-size: 80rpx;
  301. font-weight: bold;
  302. width: 100%;
  303. text-align: center;
  304. }
  305. .complete {
  306. color: #d29259;
  307. position: absolute;
  308. bottom: 40rpx;
  309. font-size: 28rpx;
  310. width: 100%;
  311. text-align: center;
  312. }
  313. }
  314. .swiper-item-bg {
  315. position: absolute;
  316. left: 0;
  317. top: 0;
  318. width: 100%;
  319. height: 100%;
  320. }
  321. }
  322. .scroll-wrapper {
  323. overflow: hidden;
  324. height: 184rpx;
  325. white-space: nowrap;
  326. width: 100%;
  327. .item {
  328. position: relative;
  329. display: inline-block;
  330. width: 108rpx;
  331. height: 184rpx;
  332. margin: 0 14rpx;
  333. .top {
  334. width: 108rpx;
  335. height: 130rpx;
  336. position: relative;
  337. .item-bg {
  338. position: absolute;
  339. top: 0;
  340. left: 0;
  341. right: 0;
  342. width: 108rpx;
  343. height: 130rpx;
  344. }
  345. .content {
  346. width: 88rpx;
  347. height: 110rpx;
  348. background: linear-gradient(180deg, #fb5e2f 0%, #f53015 100%);
  349. border-radius: 10rpx;
  350. overflow: hidden;
  351. .image {
  352. width: 88rpx;
  353. height: 110rpx;
  354. }
  355. }
  356. .badge {
  357. position: absolute;
  358. right: 0;
  359. top: 0;
  360. width: 32rpx;
  361. height: 32rpx;
  362. border-radius: 16rpx;
  363. background: linear-gradient(180deg, #f8dbbd 0%, #feb578 100%);
  364. color: #9a6600;
  365. font-size: 24rpx;
  366. }
  367. }
  368. .color-un {
  369. color: #ac76c8;
  370. }
  371. }
  372. }
  373. </style>