40 lines
1.6 KiB
Plaintext
40 lines
1.6 KiB
Plaintext
<scroll-view scroll-y="true" style="height: {{height+'px'}};" class="scroll"
|
|
scroll-into-view="{{ classificationIdNav }}" scroll-with-animation="true">
|
|
<!-- 项目回报 -->
|
|
<view class="project_detail_html" id='classificationIdNav2' wx:if='{{lists.length>0}}'>
|
|
<view class="project_list" wx:for='{{lists}}'>
|
|
<view class="title">{{item.title}} <span>¥{{item.price}}</span></view>
|
|
<view class="fast">快速发货</view>
|
|
<view class="project_item">
|
|
<view class="item_title">回报内容</view>
|
|
<view class="item_content">
|
|
<view class="des">{{item.remark}}</view>
|
|
<view class="imglist">
|
|
<image wx:for='{{item.pictures}}' wx:for-item='it' src="{{it}}" mode="aspectFill"></image>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="project_item">
|
|
<view class="item_title">回报时间</view>
|
|
<view class="item_content">
|
|
<view class="des">{{item.time}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="project_item">
|
|
<view class="item_title">配送说明</view>
|
|
<view class="item_content">
|
|
<view class="des">{{item.shipping}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="seeAll">
|
|
{{item.all_users}}人已支持/{{item.quantity}} <span catchtap="beSure" data-id='{{item.crowdfund_item_id}}'>立即支持</span>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="no_list" wx:elif='{{lists.length>0}}'>没有更多~</view>
|
|
|
|
<view wx:else class="no_list">
|
|
<image src="/static/images/no_list.png" mode="widthFix"></image>
|
|
暂无数据
|
|
</view>
|
|
</scroll-view> |