完善页面

This commit is contained in:
wangxiaowei
2025-08-28 18:20:17 +08:00
parent fdaa01f801
commit e1a4f57610
27 changed files with 953 additions and 178 deletions

View File

@ -0,0 +1,19 @@
<template>
<view class="w-150rpx h-72rpx rounded-16rpx bg-[#E54444] relative flex justify-center items-center">
<view class="bg-[#fff] opacity-[.5] w-6rpx h-24rpx rounded-40rpx absolute left-14rpx top-[50%] transform-translate-y-[-50%]"></view>
<view class="text-[#fff] text-28rpx leading-38rpx">{{ name }}</view>
</view>
</template>
<script lang="ts" setup name="RechargeBtn">
defineProps({
name: {
type: String,
default: '充值'
}
})
</script>
<script lang="ts">
export default {}
</script>