flower-mp/components/badge/index.wxml
2025-12-12 14:53:16 +08:00

17 lines
858 B
Plaintext

<!--components/badge/index.wxml-->
<t-overlay visible="{{visible}}" bind:click="handleOverlayClick">
<view class="full-width flex flex-center flex-col" style="height: 100vh; ">
<view class="badge-scene" style="margin-top: -180rpx;">
<view class="badge-bg-rays"></view>
<view class="badge-3d-wrapper">
<view class="badge-content-container">
<image src="{{info.oss.url}}" class="badge-img-inner"></image>
</view>
</view>
</view>
<view class="font-16 bold white mt-32">{{info.name}}</view>
<view class="font-14 mt-16 white">徽章获取条件:{{info.desc}}</view>
<button theme="primary" style="background-color: #E8D7B4;width: 80%;border-radius: 50rpx; margin-top: 32rpx; color: #7B6946;" shape="round" bind:tap="tap">领取徽章</button>
</view>
</t-overlay>