index.wxml 1.8 KB

12345678910111213141516171819202122232425262728293031323334
  1. <view class="content main">
  2. <view class="one">
  3. <input class="input" type="text" bindconfirm="toSearch" confirm-type="search" placeholder-style=' text-align: center;' placeholder="搜索" />
  4. </view>
  5. <view class="two">
  6. <scroll-view class="scroll-view" scroll-y="true" bindscrolltolower="toLower" bindscroll="toScroll">
  7. <view class="list" wx:for="{{list}}" wx:key="index" wx:for-item="item" data-item="{{item}}" bindtap="toView">
  8. <view class="list_1">
  9. <image class="images" src="{{item.userInfo.icon&&item.userInfo.icon.length>0?item.userInfo.icon[0].url:logo}}" mode="" />
  10. <view class="other">
  11. <view class="name">
  12. <view class="title textOver"> {{item.apply_name||"暂无姓名"}} </view>
  13. <view class="color{{item.status}}"> {{item.status_name||'暂无状态'}} </view>
  14. </view>
  15. <view class="other_1 textOver">
  16. 年龄:{{item.userInfo.age||'暂无年龄'}}
  17. </view>
  18. <view class="other_1 textOver">
  19. 性别:{{item.userInfo.gender_name||'暂无性别'}}
  20. </view>
  21. <view class="other_1 textOver">
  22. 手机号:{{item.userInfo.phone||'暂无手机号'}}
  23. </view>
  24. </view>
  25. </view>
  26. <view class="button">
  27. <button class="btn" wx:if="{{item.status=='0'}}" type="primary" size="mini" data-item="{{item}}" bindtap="toExam">
  28. 审核
  29. </button>
  30. </view>
  31. </view>
  32. </scroll-view>
  33. </view>
  34. </view>