12345678910111213141516171819202122232425262728 |
- <template>
- <view>
- <cu-custom bgColor="bg-gradual-blue" :isBack="true">
- <block slot="backText">返回</block>
- <block slot="content">中奖信息</block>
- </cu-custom>
- <text style="font-size: 60px;">✌</text>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- isCard: false
- };
- },
- methods: {
- IsCard(e) {
- this.isCard = e.detail.value
- }
- }
- }
- </script>
- <style>
- </style>
|