Files
PropertyDeployment/resources/Web/MicroCommunityIotWeb/html/components/event/chooseStaff/chooseStaff.html
2025-12-09 20:22:03 +08:00

53 lines
2.8 KiB
HTML

<div id="chooseStaffModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseStaffModelLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="chooseStaffModelLabel">
<vc:i18n name="选择员工" namespace="chooseStaff"></vc:i18n>
</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-8">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_submitSelectStaff()">
<vc:i18n name="确定" namespace="chooseStaff"></vc:i18n>
</button>
</div>
</div>
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">
<input type="checkbox" class="i-checks" @click="selectAll($event)">
</th>
<th class="text-center">
<vc:i18n name='员工名称' namespace='chooseStaff'></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="staff in staffList">
<td class="text-center">
<input type="checkbox" class="i-checks checkItem" v-bind:value="staff" v-model="chooseStaffInfo.selectStaffList">
</td>
<td class="text-center">{{staff.name}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>