You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
718 B
17 lines
718 B
<view class="alliance-list">
|
|
<block wx:for="{{allianceList}}" wx:key="index">
|
|
<view class="alliance-item" bindtap="toAllianceDetail" data-id="{{item.id}}">
|
|
<image class="headpic" src="{{item.headPic}}" />
|
|
<view class="alliance-info">
|
|
<view class="title">名称: {{item.unionName}}</view>
|
|
<view class="title">联系人: {{item.contacts}}</view>
|
|
<view class="title">电话: {{item.phone}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="list-line" wx:if="{{index < allianceList.length - 1}}"></view>
|
|
</block>
|
|
</view>
|
|
|
|
<load-more loadMoreType="{{loadMoreType}}" loadMoreVisible="{{loadMoreVisible}}"></load-more>
|
|
|
|
<no-data isShow="{{nodata}}"></no-data>
|