|
@@ -1,4 +1,7 @@
|
|
|
<wxs module="time" src="../../utils/time.wxs"></wxs>
|
|
|
+ <wxs module="subqian" src="../../utils/subqian.wxs"></wxs>
|
|
|
+ <wxs module="subhou" src="../../utils/subhou.wxs"></wxs>
|
|
|
+
|
|
|
<view>
|
|
|
<view id='tabs'>
|
|
|
<view class='tabs-box'>
|
|
@@ -20,25 +23,29 @@
|
|
|
</van-tabs>
|
|
|
<view>共<text class="number">{{listData.length}}</text>条采集数据</view>
|
|
|
<view class="tr">
|
|
|
- <view class="th">
|
|
|
+ <view class="th td22">
|
|
|
<checkbox bindtap="selectall" />
|
|
|
</view>
|
|
|
<view class="th">姓名</view>
|
|
|
- <view class="th">保存时间</view>
|
|
|
+ <view class="th " style=" margin-left: 100rpx;">保存时间</view>
|
|
|
<view class="th">状态</view>
|
|
|
</view>
|
|
|
<checkbox-group bindchange="checkboxChange">
|
|
|
<view class="tr" wx:for="{{listData}}" wx:key="" bindtap="cellClick" data-infos='{{item}}'>
|
|
|
- <view class="td">
|
|
|
+ <view class="td td22">
|
|
|
<checkbox value="{{item.id}}" checked="{{item.checked}}" />
|
|
|
</view>
|
|
|
- <view class="td" value="{{item.text}}">{{item.name}}</view>
|
|
|
+ <view class="td idcard" value="{{item.text}}">
|
|
|
+ <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" wx:if="{{item.status == '1'}}" style="color: #67C23A">填全未审</view>
|
|
|
- <view class="td" wx:if="{{item.status == '0'}}" style="color: #F56C6C">未完成</view>
|
|
|
- <view class="td" wx:if="{{item.status == '2'}}" style="color: #909399">审核中</view>
|
|
|
- <view class="td" wx:if="{{item.status == '3'}}" style="color: #409EFF">审核完成</view>
|
|
|
- <view class="td" wx:if="{{item.status == '4'}}" style="color: #E6A23C">审核失败</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>
|
|
|
</view>
|