index.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <page ref="pageRef" title="燚火漫域周年蛋糕" nav-color="transparent" light>
  3. <view>
  4. <image :src="resource.ex_bg" web class="bg" mode="aspectFill" />
  5. <red-packet v-if="caketType === 0 && isClick === 0" ref="redPacketRef" :cakeTotal="cakeTotal" :isEnd="isEnd" @open="getMoney" />
  6. <result v-if="isEnd === 1 && isClick === 1" ref="resultRef" />
  7. <materal v-if="caketType === 1" ref="materalRef" :caketType="caketType" @open="getMoney" />
  8. <activity-ends v-if="isEnd === 1 && caketType === 1" ref="activityEndsRef" />
  9. </view>
  10. </page>
  11. </template>
  12. <script>
  13. import resource from '@/utils/resource'
  14. import materal from './materal.vue'
  15. import redPacket from './red_packet.vue'
  16. import result from './result.vue'
  17. import activityEnds from './activity_ends.vue'
  18. export default {
  19. components: { materal, redPacket, result, activityEnds },
  20. data() {
  21. return {
  22. resource,
  23. caketType: 1, // 0 合成, 1 没合成
  24. cakeTotal: 0,
  25. isEnd: 0, // 0 没结束 1: 结束,
  26. isClick: 0 // 0 没有点击 1: 已点击,
  27. }
  28. },
  29. mounted() {
  30. this.getMoney()
  31. },
  32. methods: {
  33. async getMoney() {
  34. await this.$service.weal.expectedMoney().then((res) => {
  35. if (res.code === '0') {
  36. this.caketType = res.data.isSynthesis
  37. this.cakeTotal = res.data.synthesisNum
  38. this.isEnd = res.data.isEnd
  39. this.isClick = res.data.isClick
  40. } else {
  41. this.$message.error(res.msg)
  42. }
  43. })
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. .bg {
  50. position: fixed;
  51. left: 0;
  52. right: 0;
  53. top: 0;
  54. bottom: 0;
  55. width: 100%;
  56. height: 101vh;
  57. }
  58. </style>