62 lines
2.7 KiB
Plaintext
62 lines
2.7 KiB
Plaintext
<view class="header_title">
|
|
<view class="header_title_row">
|
|
<van-row>
|
|
<van-col span="4">
|
|
<view class="header_img" bindtap="returnToPage"><image src="/images/left.png"></image></view>
|
|
</van-col>
|
|
<van-col span="15">
|
|
<view class="header_name">特种人员管理</view>
|
|
</van-col>
|
|
</van-row>
|
|
</view>
|
|
</view>
|
|
<view class="max_content">
|
|
<project-select init="{{initData}}" bindchange="onProjectSelect"></project-select>
|
|
<view class="inspect_max">
|
|
<view class="inspect_list">
|
|
<view class="inspect_for" wx:for="{{listData}}" wx:key="index" data-set="{{item}}" bindtap="getInfo">
|
|
<view class="inspect_for_bgd">
|
|
<view class="inspect_list_title">
|
|
<view class="inspect_list_title_label inspect_list_title_width">
|
|
<view class="inspect_list_title_number">{{index < 9 ?'0'+(index+1):(index+1)}}</view>
|
|
<view class="module_title module_title_flex inspect_list_title_text"> {{' '+item.credentialNumber}}</view>
|
|
</view>
|
|
</view>
|
|
<view class="inspect_list_info">
|
|
<view class="inspect_list_info_details">
|
|
<view class="inspect_list_info_img">
|
|
<van-image wx:if="{{item.credentialType != 'PDF'}}" width="120rpx" height="120rpx" fit="cover" src="{{request+item.credentialFile+'.min.jpg'}}"/>
|
|
<van-image wx:if="{{item.credentialType == 'PDF'}}" width="120rpx" height="120rpx" fit="cover" src="https://szgcwx.jhncidg.com/staticFiles/icon/pdf.png"/>
|
|
</view>
|
|
<view class="inspect_list_info_data">
|
|
<view class="inspect_list_info_data_prop color_blue">人员姓名:{{item.name}}</view>
|
|
<view class="inspect_list_info_data_prop color_orange">人员类型:{{item.specialTypeName}}</view>
|
|
<view class="inspect_list_info_data_prop">证书过期时间:{{item.credentialExpirationTime}}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view wx:if="{{listData.length==0}}">
|
|
<view style="padding-top: 70px;text-align: -webkit-center;">
|
|
<image src="https://szgcwx.jhncidg.com/staticFiles/nodata.png" style="width: 130px;height: 105px;"></image>
|
|
<view style="color: #a5abbb;">暂无数据</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="inspect_add_to" bindtap="skipAdd">
|
|
<view style="padding-top: 22rpx;">
|
|
<image src="/images/new_add.png"></image>
|
|
<view>新增</view>
|
|
</view>
|
|
</view></view>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|