|
@@ -22,32 +22,34 @@
|
|
|
<van-tab title="审核失败"></van-tab>
|
|
|
</van-tabs>
|
|
|
<view class="zizi">共<text class="number">{{listData.length}}</text>条采集数据</view>
|
|
|
- <view class="tr" style=" border-bottom: 1px solid #dadada; padding-bottom: 15rpx;">
|
|
|
- <view class="th td22" style="border-bottom: unset; ">
|
|
|
- <checkbox bindtap="selectall" />
|
|
|
- </view>
|
|
|
- <view class="th" style="border-bottom: unset;">姓名</view>
|
|
|
- <view class="th " style="border-bottom: unset; margin-left: 100rpx;">保存时间</view>
|
|
|
- <view class="th" style="border-bottom: unset;">状态</view>
|
|
|
- </view>
|
|
|
- <checkbox-group bindchange="checkboxChange">
|
|
|
- <view class="tr" wx:for="{{listData}}" wx:key="">
|
|
|
- <view class="td td22">
|
|
|
- <checkbox disabled="{{item.status == '3'}}" value="{{item.id}}" checked="{{item.checked}}" />
|
|
|
+ <scroll-view class="center" scroll-y="true" style='height: {{scrollHeight + "rpx"}}'>
|
|
|
+ <view class="tr" style=" border-bottom: 1px solid #dadada; padding-bottom: 15rpx;">
|
|
|
+ <view class="td td22" style="border-bottom: unset; ">
|
|
|
+ <checkbox bindtap="selectall" />
|
|
|
</view>
|
|
|
- <view class="td idcard" value="{{item.text}}" bindtap="cellClick" data-infos='{{item}}'>
|
|
|
- <view>{{item.name}}</view>
|
|
|
- <view wx:if='{{item.idNumber}}' class="oldzi">({{subqian.subqian(item.idNumber)}}</view>
|
|
|
- <view wx:if='{{item.idNumber}}' class="oldzi">{{subhou.subhou(item.idNumber)}})</view>
|
|
|
- </view>
|
|
|
- <view class="td" value="{{item.text}}">{{time.formatDate(item.time)}}</view>
|
|
|
- <view class="td status" wx:if="{{item.status == '1'}}" style="color: #67C23A">填全未审</view>
|
|
|
- <view class="td status" wx:if="{{item.status == '0'}}" style="color: #F56C6C">未完成</view>
|
|
|
- <view class="td status" wx:if="{{item.status == '2'}}" style="color: #909399">审核中</view>
|
|
|
- <view class="td status" wx:if="{{item.status == '3'}}" style="color: #409EFF">审核完成</view>
|
|
|
- <view class="td status" wx:if="{{item.status == '4'}}" style="color: #E6A23C">审核失败</view>
|
|
|
+ <view class="th" style="border-bottom: unset;">姓名</view>
|
|
|
+ <view class="th " style="border-bottom: unset; margin-left: 100rpx;">保存时间</view>
|
|
|
+ <view class="th" style="border-bottom: unset;">状态</view>
|
|
|
</view>
|
|
|
- </checkbox-group>
|
|
|
+ <checkbox-group bindchange="checkboxChange">
|
|
|
+ <view class="tr" wx:for="{{listData}}" wx:key="">
|
|
|
+ <view class="td td22">
|
|
|
+ <checkbox disabled="{{item.status == '3'}}" value="{{item.id}}" checked="{{item.checked}}" />
|
|
|
+ </view>
|
|
|
+ <view class="td idcard" value="{{item.text}}" bindtap="cellClick" data-infos='{{item}}'>
|
|
|
+ <view>{{item.name}}</view>
|
|
|
+ <view wx:if='{{item.idNumber}}' class="oldzi">({{subqian.subqian(item.idNumber)}}</view>
|
|
|
+ <view wx:if='{{item.idNumber}}' class="oldzi">{{subhou.subhou(item.idNumber)}})</view>
|
|
|
+ </view>
|
|
|
+ <view class="td" value="{{item.text}}">{{time.formatDate(item.time)}}</view>
|
|
|
+ <view class="td status" wx:if="{{item.status == '1'}}" style="color: #67C23A">填全未审</view>
|
|
|
+ <view class="td status" wx:if="{{item.status == '0'}}" style="color: #F56C6C">未完成</view>
|
|
|
+ <view class="td status" wx:if="{{item.status == '2'}}" style="color: #909399">审核中</view>
|
|
|
+ <view class="td status" wx:if="{{item.status == '3'}}" style="color: #409EFF">审核完成</view>
|
|
|
+ <view class="td status" wx:if="{{item.status == '4'}}" style="color: #E6A23C">审核失败</view>
|
|
|
+ </view>
|
|
|
+ </checkbox-group>
|
|
|
+ </scroll-view>
|
|
|
</view>
|
|
|
<view hidden='{{currentTabIndex != 1}}'>
|
|
|
<view class="zizi">共<text class="number">{{list.length}}</text>条探访数据</view>
|
|
@@ -99,7 +101,7 @@
|
|
|
|
|
|
|
|
|
</view>
|
|
|
-
|
|
|
+ <view wx:if='{{currentTabIndex != 1}}' class="delete-box" bindtap="deletes">删除</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
|