Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/frame/searchStaff/searchStaff.html
2025-12-09 20:22:03 +08:00

73 lines
4.2 KiB
HTML

<div id="searchStaffModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="searchStaffModelLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="searchStaffModelLabel">
<span><vc:i18n name="定位员工" namespace="searchStaff"></vc:i18n></span>
</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="row">
<div class="col-sm-7 m-b-xs">
</div>
<div class="col-sm-5">
<div class="input-group">
<input :placeholder="vc.i18n('输入员工名称','searchStaff')" type="text" v-model="searchStaffInfo._currentStaffName" class="form-control form-control-sm">
<span class="input-group-append">
<button type="button" class="btn btn-sm btn-primary" v-on:click="searchStaffs()"><span><vc:i18n name="查询" namespace="searchStaff"></vc:i18n></span></button>
</span>
</div>
</div>
</div>
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th>
<span><vc:i18n name="员工编码" namespace="searchStaff"></vc:i18n></span>
</th>
<th>
<span><vc:i18n name="员工名称" namespace="searchStaff"></vc:i18n></span>
</th>
<th>
<span><vc:i18n name="手机号" namespace="searchStaff"></vc:i18n></span>
</th>
<th>
<span><vc:i18n name="性别" namespace="searchStaff"></vc:i18n></span>
</th>
<th>
<span><vc:i18n name="操作" namespace="searchStaff"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="staff in searchStaffInfo.staffs">
<td>{{staff.userId}}</td>
<td>{{staff.name}}</td>
<td>{{staff.tel}}</td>
<td>{{staff.sex == 0 ? '男' : (staff.sex == 1 ?'女':'')}}</td>
<td>
<button class="btn btn-primary btn-xs" v-on:click="chooseStaff(staff)"><span><vc:i18n name="选择" namespace="searchStaff"></vc:i18n></span></button>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<vc:create namespace="searchStaff" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
</div>