mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
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="_openAddDataPrivilegeModal()">
|
|
添加
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_openEditDataPrivilegeModel()">
|
|
修改
|
|
</button>
|
|
<button type="button" class="btn btn-white btn-sm" v-on:click="_openDeleteDataPrivilegeModel()">
|
|
删除
|
|
</button>
|
|
</div>
|
|
<div class="vc-org margin-top">
|
|
<ul>
|
|
<li v-for="(dataPrivilege,index) in dataPrivilegeDivInfo.dataPrivileges" @click="_switchDataPrivilege(dataPrivilege)"
|
|
:class="{'active':dataPrivilege.dpId == dataPrivilegeDivInfo.curDataPrivilege.dpId}">{{dataPrivilege.name}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<vc:create path="property/addDataPrivilege" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="property/editDataPrivilege"></vc:create>
|
|
<vc:create path="property/deleteDataPrivilege"></vc:create>
|
|
</div> |