selectRider.wxml 1.2 KB

123456789101112131415161718192021222324252627
  1. <!-- 快递信息 -->
  2. <i-modal scrollUp="{{true}}" visible="{{show}}" bind:cancel="close">
  3. <view class="bg-f rounded">
  4. <view class="p15 text-dark weight fsz-30 text-center">选择配送员</view>
  5. <!--搜索框begin-->
  6. <view class='search-bar'>
  7. <view class='search-box'>
  8. <input class='ipt' placeholder="搜索" confirm-type="搜索" type="text" bindconfirm="goResult"></input>
  9. <view class='search-icon'>
  10. <text class="iconfont icon-sousuo1"></text>
  11. </view>
  12. </view>
  13. </view>
  14. <scroll-view scroll-y style="max-height:60vh;" bindscrolltolower="toLower">
  15. <view class="item p15 border-bottom i-flex i-flex-alc" wx:for="{{list}}" wx:key="id" data-id="{{item.id}}" bindtap="selectItem">
  16. <view class="i-flex-item">
  17. <view class="fsz-32">{{item.username}}</view>
  18. <view class="text-6 fsz-26 mt5">{{item.mobile}}</view>
  19. </view>
  20. <view class="btn fsz-24">
  21. 选择 <text class="iconfont icon-youjiantou text-gray" style="font-size: 28rpx;"></text>
  22. </view>
  23. </view>
  24. <i-load-more iClass="loadMore" loading="{{loadMore}}" tip="{{loadText}}" wx:if="{{!noMore}}"></i-load-more>
  25. </scroll-view>
  26. </view>
  27. </i-modal>