MicroCommunityWeb/public/components/frame/deleteStaff/deleteStaff.html
2022-06-01 18:14:08 +08:00

21 lines
1.4 KiB
HTML
Executable File

<div class="modal fade" id="deleteStaffModel" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel"><span><vc:i18n name="请确认您的操作" namespace="deleteStaff"></vc:i18n></span>!</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<tr align="center">
<th><span><vc:i18n name="确认是否删除,删除员工前请确认员工已完成相关审批流程,删除后相关流程将无法继续进行,请慎重操作!" namespace="deleteStaff"></vc:i18n></span></th>
</tr>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" v-on:click="closeDeleteStaffModel()"><span><vc:i18n name="点错了" namespace="deleteStaff"></vc:i18n></span></button>
<button type="button" class="btn btn-primary" v-on:click="deleteStaff()"><span><vc:i18n name="确认删除" namespace="deleteStaff"></vc:i18n></span></button>
</div>
</div>
</div>
</div>