MicroCommunityWeb/public/components/dev/deleteReportCustomGroup/deleteReportCustomGroup.html
2021-11-09 15:35:02 +08:00

23 lines
1.1 KiB
HTML

<div class="modal fade" id="deleteReportCustomGroupModel" 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">请确认您的操作!</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>确定删除报表组</th>
</tr>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal"
v-on:click="closeDeleteReportCustomGroupModel()">点错了</button>
<button type="button" class="btn btn-primary" v-on:click="deleteReportCustomGroup()">确认删除</button>
</div>
</div>
</div>
</div>