mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 00:20:01 +08:00
21 lines
925 B
HTML
21 lines
925 B
HTML
<div class="bg-white margin-top-xs padding border-radius">
|
|
<div class=" ">
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="openPrivilegeGroupModel()">
|
|
添加
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="openEditPrivilegeGroupModel()">
|
|
修改
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="openDeletePrivilegeGroupModel()">
|
|
删除
|
|
</button>
|
|
</div>
|
|
<div class="vc-org margin-top">
|
|
<ul>
|
|
<li v-for="(role,index) in roleDivInfo.roles" @click="_switchRole(role)" :class="{'active':role.pgId == roleDivInfo.curRole.pgId}">{{role.name}}</li>
|
|
</ul>
|
|
</div>
|
|
<vc:create path="dev/addPrivilegeGroup"></vc:create>
|
|
<vc:create path="dev/editPrivilegeGroup"></vc:create>
|
|
<vc:create path="dev/deletePrivilegeGroup"></vc:create>
|
|
</div> |