123456789101112131415161718192021222324 |
- <view class="SearchInputBox">
- <My_SearchInputBox inputColor="#E8E3E1" inputRadius="30" fisadministrator="{{true}}" butText="新合作" marTop="0" route="consociation" bind:searchQuery="searchQuery"></My_SearchInputBox>
- </view>
- <My_DisplayBox title="商户列表" isMore="{{false}}">
- <image slot="display-box-img" class="display-title_image" src="/static/icon-05.png" mode="aspectFit"></image>
- <scroll-view class="list-scroll-view" scroll-y bindscrolltolower="scrolltolower">
- <view class="company-data" wx:for="{{cooperationList}}" data-index="{{index}}" catchtap="jumpForDetails">
- <view>
- <image wx:if="{{item.attinfos[0]}}" class="company-data-image" src="{{item.attinfos[0].fobsurl}}" mode="aspectFill"></image>
- <image wx:else class="company-data-image" src="/static/tacitly-approve/MRuserImg.png" mode="aspectFill"></image>
- </view>
- <view class="company-data-text">
- <view class="company-data-brandName u-line-1">{{item.fbrand}}</view>
- <view class="u-line-1">联系方式:{{item.fphonenumber}}</view>
- <view class="u-line-1">联系方式:{{item.mySaleprodclass}}</view>
- </view>
- <view class="company-data-change" data-index="{{index}}" catchtap="jumpForChange">
- <image src="/static/changeImg.png"></image>
- </view>
- </view>
- <My_pageReachBottom loadMore="{{pageNumber > pageTotal}}" dummyStatus="{{cooperationList.length!=0}}"></My_pageReachBottom>
- </scroll-view>
- </My_DisplayBox>
|