Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/examine/examineStaffManage/examineStaffManage.html
2025-12-09 20:22:03 +08:00

130 lines
7.1 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>
<span><vc:i18n name="查询条件" namespace="examineStaffManage"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;"></div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请选择员工名称','examineStaffManage')"
v-model="examineStaffManageInfo.conditions.staffName" class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请选择考核项目','examineStaffManage')"
v-model="examineStaffManageInfo.conditions.projectName" class=" form-control">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryExamineStaffMethod()">
<i class="fa fa-search"></i>
<span><vc:i18n name="查询" namespace="examineStaffManage"></vc:i18n></span>
</button>
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_resetExamineStaffMethod()">
<i class="fa fa-repeat"></i>
<span><vc:i18n name="重置" namespace="examineStaffManage"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="考核人员" namespace="examineStaffManage"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddExamineStaffModal()">
<i class="fa fa-plus"></i>
<vc:i18n name="添加" namespace="examineStaffManage"></vc:i18n>
</button>
</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">
<span><vc:i18n name='人脸' namespace='examineStaffManage'></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name='员工编号' namespace='examineStaffManage'></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name='员工名称' namespace='examineStaffManage'></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name='岗位' namespace='examineStaffManage'></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name='考核项目' namespace='examineStaffManage'></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name='操作' namespace="examineStaffManage"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="examineStaff in examineStaffManageInfo.examineStaffs">
<td class="text-center">
<div style="position: relative; display: inline-block;"
v-on:click="showImg(examineStaff.headerImg?examineStaff.headerImg:'/img/noPhoto.jpg')">
<img width="50" height="50"
v-bind:src="examineStaff.headerImg?examineStaff.headerImg:'/img/noPhoto.jpg'"
onerror="this.src='/img/noPhoto.jpg';">
<img src="/img/icon-bigimg.png" style="position: absolute;right: 0;bottom: 0;"
width="50" height="50" alt="">
</div>
</td>
<td class="text-center">{{examineStaff.staffId}}</td>
<td class="text-center">{{examineStaff.staffName}}</td>
<td class="text-center">{{examineStaff.post}}</td>
<td class="text-center">
<span v-for="(item,index) in examineStaff.projects">{{item.projectName}},</span>
</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openEditExamineStaffModel(examineStaff)">
<span><vc:i18n name='修改' namespace="examineStaffManage"></vc:i18n></span>
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteExamineStaffModel(examineStaff)">
<span><vc:i18n name='删除' namespace="examineStaffManage"></vc:i18n></span>
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="examine/deleteExamineStaff"></vc:create>
<vc:create path="common/viewImage"></vc:create>
</div>