26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
<!--packageI/donation_project/donationProjectList/donationProjectList.wxml-->
|
|
|
|
|
|
|
|
|
|
<view class="wrapper">
|
|
<view class="donation-list ">
|
|
<view class="donation-item" wx:for="{{listData}}">
|
|
<view class="face">
|
|
<yz-image wx:if="{{item.project_v&&item.project_v.change_img && item.project_v.change_img.length > 0}}" src="{{item.project_v.change_img[0]}}" mode="aspectFill" data-src="{{item.project_v.change_img[0]}}" bindtap="handImagePreview" />
|
|
<text wx:else >暂无内容</text>
|
|
</view>
|
|
<view class="desc_info" bindtap="getDetails" data-id="{{item.id}}">
|
|
<view class="name text-overHide">姓名:{{ item.name }}</view>
|
|
<view class="price">捐赠金额: <text class="small">¥</text><text class="num">{{ item.price }}</text></view>
|
|
<view class="project_name text-overHide">项目名称:{{ item.project_v.title }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view wx:if="{{listData.length==0 && networkLoading}}" class="blank">
|
|
<image src='https://mini-app-img-1251768088.cos.ap-guangzhou.myqcloud.com/blank.png' mode='widthFix' />
|
|
</view>
|
|
|
|
<shopfoot ></shopfoot> |