update:暂存金币相关

This commit is contained in:
2026-08-19 10:14:17 +08:00
parent d60c32506f
commit 63f3cada0f
36 changed files with 1303 additions and 2 deletions
+38
View File
@@ -0,0 +1,38 @@
<script setup>
import Container from "@/components/Container.vue";
import CoinHeader from "./components/CoinHeader.vue";
import { coinRules } from "./data";
</script>
<template>
<Container :bgType="6" :isHome="true">
<template #header>
<CoinHeader title="金币规则" />
</template>
<view class="rules-page">
<view
v-for="(rule, index) in coinRules"
:key="index"
class="rules-page__item"
>
<text>{{ index + 1 }}{{ rule }}</text>
</view>
</view>
</Container>
</template>
<style scoped>
.rules-page {
width: 100%;
padding: 28rpx 38rpx 60rpx;
box-sizing: border-box;
}
.rules-page__item {
margin-bottom: 26rpx;
color: rgba(255, 255, 255, 0.88);
font-size: 28rpx;
line-height: 52rpx;
text-align: justify;
}
</style>