MicroCommunityWeb/public/pages/admin/storeInfoManage/storeInfoManage.html
2021-05-25 11:45:04 +08:00

77 lines
3.4 KiB
HTML

<div >
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>商户信息管理信息</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddStoreInfoModal()">
<i class="glyphicon glyphicon-plus"></i>
添加商户信息管理
</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">商户信息ID</th>
<th class="text-center">商户名称</th>
<th class="text-center">图片地址</th>
<th class="text-center">商户电话</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="storeInfo in storeInfoManageInfo.storeInfos">
<td class="text-center">{{storeInfo.storeInfoId}}</td>
<td class="text-center">{{storeInfo.name}}</td>
<td class="text-center">{{storeInfo.icon}}</td>
<td class="text-center">{{storeInfo.tel}}</td>
<td class="text-center">{{storeInfo.site}}</td>
<td class="text-center">{{storeInfo.seq}}</td>
<td class="text-center">{{storeInfo.workTime}}</td>
<td class="text-center"><div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openEditStoreInfoModel(storeInfo)">修改</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openDeleteStoreInfoModel(storeInfo)">删除</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/addStoreInfo"
callBackListener=""
callBackFunction=""
></vc:create>
<vc:create path="admin/editStoreInfo"></vc:create>
<vc:create path="admin/deleteStoreInfo"></vc:create>
</div>