flower-mp/pages/store/index.wxml
2025-12-08 16:03:03 +08:00

32 lines
1.4 KiB
Plaintext

<!--pages/store/index.wxml-->
<view>
<view class="flex flex-center primary-bg padding">
<view class="white">
我的阳光值 {{points}}
</view>
<view class="ml-16" style="color: orange;">
<button class="avatar-wrapper" open-type="share">邀请好友获取更多兑换币</button>
</view>
</view>
<view class="grid margin">
<view wx:for="{{list}}">
<view class="white-bg row">
<image style="width: 100%; border-top-left-radius: 16rpx; border-top-right-radius: 16rpx;" src="{{item.imgList[0].url}}" mode="aspectFill"></image>
<view style="background-color: #C35D4B;margin-top: -10rpx; padding: 8rpx;" class="font-12 white">需要 {{item.points}} 阳光值</view>
<view style="padding: 0 16rpx;" class="mt-16">
<view class="font-14 w400">
{{item.name}}
</view>
<view class="mt-5">
<t-tag shape="round" size="small">{{item.tag}}</t-tag>
</view>
</view>
<view class="flex flex-center mb-16 mt-16" style="padding-bottom: 32rpx;">
<t-button size="small" style="width: 90%;" shape="round" theme="primary" wx:if="{{item.status === 0}}">立即领养(付邮)</t-button>
<t-button size="small" style="width: 90%;" shape="round" theme="danger" wx:if="{{item.status === 1}}">获取资格</t-button>
</view>
</view>
</view>
</view>
</view>