Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/pages/accessControl/personFace/personFace.html
2025-12-09 20:22:03 +08:00

185 lines
11 KiB
HTML

<div>
<div class="row">
<div class="col-md-1 padding-r-0">
<div class=" border-radius ">
<div class="margin-xs-r treeview ">
<ul class="list-group text-center border-radius">
<li class="list-group-item node-orgTree " v-for="(item, index) in personFaceInfo.states"
:key="index" @click="_switchState(item)"
:class="{'vc-node-selected':personFaceInfo.conditions.state == item.statusCd}">
{{item.name}}
</li>
</ul>
</div>
</div>
</div>
<div class="col-md-11">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>
<vc:i18n name="查询条件"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入房屋名称','personFace')"
v-model="personFaceInfo.conditions.roomName" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入人员名称','personFace')"
v-model="personFaceInfo.conditions.personName" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入人员电话','personFace')"
v-model="personFaceInfo.conditions.personTel" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<select class="custom-select" v-model="personFaceInfo.conditions.ownerTypeCd">
<option selected value="">请选择人员类型</option>
<option value="1001">业主本人</option>
<option value="1002">家庭成员</option>
</select>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryPersonFaceMethod()">
<vc:i18n name="查询"></vc:i18n>
</button>
</div>
</div>
<div class="row">
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入开始时间','personFace')"
v-model="personFaceInfo.conditions.queryStartTime"
class=" form-control queryStartTime">
</div>
</div>
<div class="col-sm-2">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入结束时间','personFace')"
v-model="personFaceInfo.conditions.queryEndTime"
class=" form-control queryEndTime">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<vc:i18n name="人脸审核" namespace="personFace"></vc:i18n>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name='人脸' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='房屋名称' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='二维码' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='人员名称' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='人员电话' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='人员类型' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='微信openId' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='状态' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='审核说明' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='申请时间' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='编号' namespace='personFace'></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name='操作'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="personFace in personFaceInfo.personFaces">
<td class="text-center" style="white-space: nowrap;">
<img style="width: 60px; height: 60px;" class="border-radius" v-if="personFace.faceUrl" v-bind:src="personFace.faceUrl" v-on:click="_viewOwnerFace(personFace.faceUrl)" />
<img style="width: 60px; height: 60px;" class="border-radius" v-else src="/img/noPhoto.jpg" />
</td>
<td class="text-center">{{personFace.roomName}}</td>
<td class="text-center">{{personFace.qrcodeName}}</td>
<td class="text-center">{{personFace.personName}}</td>
<td class="text-center">{{personFace.personTel}}</td>
<td class="text-center">{{personFace.ownerTypeCd == '1001'?'业主本人':'家庭成员'}}</td>
<td class="text-center">{{personFace.openId}}</td>
<td class="text-center" >{{personFace.stateName}}</td>
<td class="text-center">{{personFace.remark || '-'}}</td>
<td class="text-center">{{personFace.createTime}}</td>
<td class="text-center">{{personFace.pfId}}</td>
<td class="text-center">
<div class="btn-group" v-if="personFace.state == 'W'">
<button class="btn-white btn btn-xs"
v-on:click="_openAuditPersonFaceModel(personFace)">
<vc:i18n name='审核'></vc:i18n>
</button>
</div>
<div class="btn-group" v-if="personFace.state == 'W'">
<button class="btn-white btn btn-xs"
v-on:click="_openDeletePersonFaceModel(personFace)">
<vc:i18n name='删除'></vc:i18n>
</button>
</div>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="accessControl/auditPersonFace"></vc:create>
<vc:create path="accessControl/deletePersonFace"></vc:create>
</div>