完成抽奖页面,结果页面事件逻辑,待给到设计稿更新页面

This commit is contained in:
Andy Leong
2024-01-15 18:44:31 +08:00
parent 96ad18a766
commit 1024c33440
21 changed files with 385 additions and 50 deletions

View File

@@ -1,21 +1,21 @@
<template>
<div class="RulePage">
规则页面
</div>
</template>
<script setup>
import { debounceTap } from '@/plugins'
// 页面配置初始化
const emit = defineEmits(["RulePage"]);
</script>
<template>
<div class="RulePage">
规则页面
</div>
</template>
<style lang="scss" scoped>
.RulePage {
@include fixed();
background-color: azure;
@include flexCen();
background-color: rgba($color: #000000, $alpha: 0.7);
}
</style>