LuckyDrawLottery.vue 423 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <view>
  3. <cu-custom bgColor="bg-gradual-blue" :isBack="true">
  4. <block slot="backText">返回</block>
  5. <block slot="content">中奖信息</block>
  6. </cu-custom>
  7. <text style="font-size: 60px;">✌</text>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. isCard: false
  15. };
  16. },
  17. methods: {
  18. IsCard(e) {
  19. this.isCard = e.detail.value
  20. }
  21. }
  22. }
  23. </script>
  24. <style>
  25. </style>