qingcheng-xiaochengxu/pages/jiedan/jiedan.wxml
2025-05-15 09:40:36 +08:00

43 lines
1.6 KiB
Plaintext

<view class="flex-col page">
<swiper class="swiper" autoplay circular >
<swiper-item wx:for="{{picture}}" wx:key="index">
<image class="imagesize" src="{{item.image}}" mode="aspectFill" />
</swiper-item>
</swiper>
<view class="mt-16 flex-col list">
<view
class="flex-row justify-between mt-12 list-item"
wx:for="{{list}}"
wx:for-item="item"
wx:for-index="index"
wx:key="index"
data-item="{{item}}"
bind:tap="xiangqing"
>
<image
class="self-start image_2"
src="{{item.projectImage}}"
mode="aspectFill"
/>
<view class="flex-col self-center group_2 view">
<text class="self-start font text_5 text_6">{{item.projectName}}</text>
<view class="flex-col justify-start items-center self-start text-wrapper_6">
<text class="font_3 text_7">结算T+{{item.projectSettlementCycle}}</text>
</view>
<view class="flex-row equal-division">
<view class="flex-col items-start equal-division-item">
<text class="font_4">最高价</text>
<text class="font_5 mt-5">¥{{item.projectPrice}}</text>
</view>
<view class="flex-col items-start equal-division-item">
<text class="font_4">正在推广</text>
<text class="font_5 mt-5">{{item.currentPromotionCount}}人</text>
</view>
</view>
</view>
<view class="flex-col justify-start items-center self-start text-wrapper_5 view_2">
<text class="font_2">参与推广</text>
</view>
</view>
</view>
</view>