Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/admin/convenienceMenusManage/convenienceMenusManage.html
2025-12-09 20:22:03 +08:00

79 lines
4.3 KiB
HTML

<div >
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="便民服务" namespace="convenienceMenusManage"></vc:i18n></span></h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddConvenienceMenusModal()">
<i class="glyphicon glyphicon-plus"></i>
<vc:i18n name="添加" namespace="convenienceMenusManage"></vc:i18n>
</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"><span><vc:i18n name="资产" namespace="convenienceMenusManage"></vc:i18n></span>ID</th>
<th class="text-center"><span><vc:i18n name="菜单名称" namespace="convenienceMenusManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="图片地址" namespace="convenienceMenusManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="页面路径" namespace="convenienceMenusManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="显示序号" namespace="convenienceMenusManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="备注" namespace="convenienceMenusManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="操作" namespace="convenienceMenusManage"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="convenienceMenus in convenienceMenusManageInfo.convenienceMenuss">
<td class="text-center">{{convenienceMenus.convenienceMenusId}}</td>
<td class="text-center">{{convenienceMenus.name}}</td>
<td class="text-center">
<img style="width: 60px; height: 60px; border-radius: 5px;"
v-bind:src="convenienceMenus.icon"></img>
</td>
<td class="text-center">{{convenienceMenus.url}}</td>
<td class="text-center">{{convenienceMenus.seq}}</td>
<td class="text-center">{{convenienceMenus.remark}}</td>
<td class="text-center"><div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openEditConvenienceMenusModel(convenienceMenus)"><span><vc:i18n name="修改" namespace="convenienceMenusManage"></vc:i18n></span></button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteConvenienceMenusModel(convenienceMenus)"><span><vc:i18n name="删除" namespace="convenienceMenusManage"></vc:i18n></span></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="admin/addConvenienceMenus"
callBackListener=""
callBackFunction=""
></vc:create>
<vc:create path="admin/editConvenienceMenus"></vc:create>
<vc:create path="admin/deleteConvenienceMenus"></vc:create>
</div>