MicroCommunityWeb/public/pages/dev/menuGroupCatalogManage/menuGroupCatalogManage.html
2022-02-26 14:15:40 +08:00

63 lines
3.0 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>{{menuGroupCatalogManageInfo.catalogName}}菜单组</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddMenuGroupCatalogModal()">
<i class="glyphicon glyphicon-plus"></i>
添加
</button>
<button type="button" class="btn btn-white btn-sm" v-on:click="_goBack()">
返回
</button>
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">编号</th>
<th class="text-center">菜单组</th>
<th class="text-center">菜单组ID</th>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="menuGroupCatalog in menuGroupCatalogManageInfo.menuGroupCatalogs">
<td class="text-center">{{menuGroupCatalog.gcId}}</td>
<td class="text-center">{{menuGroupCatalog.mgName}}</td>
<td class="text-center">{{menuGroupCatalog.gId}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openEditMenuGroupCatalogModel(menuGroupCatalog)">修改</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteMenuGroupCatalogModel(menuGroupCatalog)">删除</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create path="dev/addMenuGroupCatalog" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="dev/deleteMenuGroupCatalog"></vc:create>
</div>