12345678910111213141516171819202122232425262728293031323334 |
- <view class="content main">
- <view class="one">
- <input class="input" type="text" bindconfirm="toSearch" confirm-type="search" placeholder-style=' text-align: center;' placeholder="搜索" />
- </view>
- <view class="two">
- <scroll-view class="scroll-view" scroll-y="true" bindscrolltolower="toLower" bindscroll="toScroll">
- <view class="list" wx:for="{{list}}" wx:key="index" wx:for-item="item" data-item="{{item}}" bindtap="toView">
- <view class="list_1">
- <image class="images" src="{{item.userInfo.icon&&item.userInfo.icon.length>0?item.userInfo.icon[0].url:logo}}" mode="" />
- <view class="other">
- <view class="name">
- <view class="title textOver"> {{item.apply_name||"暂无姓名"}} </view>
- <view class="color{{item.status}}"> {{item.status_name||'暂无状态'}} </view>
- </view>
- <view class="other_1 textOver">
- 年龄:{{item.userInfo.age||'暂无年龄'}}
- </view>
- <view class="other_1 textOver">
- 性别:{{item.userInfo.gender_name||'暂无性别'}}
- </view>
- <view class="other_1 textOver">
- 手机号:{{item.userInfo.phone||'暂无手机号'}}
- </view>
- </view>
- </view>
- <view class="button">
- <button class="btn" wx:if="{{item.status=='0'}}" type="primary" size="mini" data-item="{{item}}" bindtap="toExam">
- 审核
- </button>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
|