39 lines
1.5 KiB
Plaintext
39 lines
1.5 KiB
Plaintext
<!--pages/knowlage/index.wxml-->
|
|
<view>
|
|
<t-sticky>
|
|
<view class="white-bg padding">
|
|
<t-search placeholder="搜索植物" shape="round" />
|
|
<view class="flex flex-center flex-justify-start mt-32">
|
|
<view wx:for="{{tags}}" class="mr-16">
|
|
<t-tag shape="round">{{item}}</t-tag>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</t-sticky>
|
|
|
|
|
|
<view class="padding">
|
|
<view class="grid">
|
|
<view wx:for="{{list}}" bind:tap="goInfo" data-id="{{item.id}}">
|
|
<view class="white-bg" style="border-radius: 16rpx;">
|
|
<view style="position: relative;">
|
|
<image src="{{item.pic}}" style="width: 100%; border-top-left-radius: 16rpx; border-top-right-radius: 16rpx;" mode="aspectFill"></image>
|
|
<view style="position: absolute ; bottom: 0; right: 0;" class="{{index === 0 ? 'price-tag-badge':'price-tag-badge2'}}" >
|
|
<view wx:if="{{index === 0}}">已拥有</view>
|
|
<view wx:else >可兑换</view>
|
|
</view>
|
|
</view>
|
|
<view style="padding: 32rpx 10rpx ; ">
|
|
<view class="bold ">{{item.name}}</view>
|
|
<view>
|
|
<view class="font-12 mt-16 white font-sub flex flex-center flex-justify-start" style="background-color: #e6e6e6;width: auto; border-radius: 40rpx; padding: 8rpx 10rpx">
|
|
<view>难度:</view>
|
|
<t-rate size="small" value="{{3}}" count="{{3}}" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |