MicroCommunityWeb/public/components/staffPrivilege/staffPrivilege.html
2020-03-07 21:46:54 +08:00

63 lines
2.7 KiB
HTML

<div id="component" >
<vc:create name="privilegeStaffInfo"></vc:create>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th>权限ID</th>
<th data-hide="phone">权限名称</th>
<th data-hide="phone">权限描述</th>
<th data-hide="phone">隶属权限组ID</th>
<th data-hide="phone,tablet" >隶属权限组名称</th>
<th data-hide="phone">状态</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="privilege in staffPrivilegeInfo.privileges">
<td>
{{privilege.pId}}
</td>
<td>
{{privilege.name}}
</td>
<td>
{{privilege.description}}
</td>
<td>
{{privilege.pgId}}
</td>
<td>
{{privilege.pgName}}
</td>
<td>
<span class="label label-primary">在用</span>
</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteStaffPrivilegeModel(privilege)">删除</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
</div>
<!-- 删除员工权限 -->
<vc:create name="deleteStaffPrivilege"></vc:create>
</div>