mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
61 lines
3.3 KiB
HTML
Executable File
61 lines
3.3 KiB
HTML
Executable File
<div id = "chooseBasePrivilegeModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseBasePrivilegeModelLabel" aria-hidden="true" >
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h3 class="modal-title" id="chooseBasePrivilegeModelLabel">选择权限</h3>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class=" row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="row">
|
|
|
|
<div class="col-sm-7 m-b-xs">
|
|
</div>
|
|
<div class="col-sm-5">
|
|
<div class="input-group">
|
|
<input placeholder="输入权限名称" type="text" v-model="chooseBasePrivilegeInfo._currentBasePrivilegeName" class="form-control form-control-sm">
|
|
<span class="input-group-append">
|
|
<button type="button" class="btn btn-sm btn-primary" v-on:click="queryBasePrivileges()">查询</button>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="table-responsive" style="margin-top:15px">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">权限ID</th>
|
|
<th class="text-center">权限名称</th>
|
|
<th class="text-center">商户类型</th>
|
|
<th class="text-center">描述</th>
|
|
<th class="text-center">操作</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="basePrivilege in chooseBasePrivilegeInfo.basePrivileges">
|
|
<td class="text-center">{{basePrivilege.pId}}</td>
|
|
<td class="text-center">{{basePrivilege.name}}</td>
|
|
<td class="text-center">{{basePrivilege.domain}}</td>
|
|
<td class="text-center">{{basePrivilege.description}}</td>
|
|
|
|
<td>
|
|
<button class="btn btn-primary btn-xs" v-on:click="chooseBasePrivilege(basePrivilege)">选择</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|