MicroCommunityWeb/public/pages/admin/auditOpenShop/auditOpenShop.html
2021-03-10 18:36:21 +08:00

62 lines
3.2 KiB
HTML

<div class=" animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>开店审核</h5>
<div class="ibox-tools" style="top:10px;">
</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">店铺logo</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="shop in auditOpenShopInfo.shops">
<td class="text-center">{{shop.shopLogo}}</td>
<td class="text-center">{{shop.shopName}}</td>
<td class="text-center">{{shop.stateName}}</td>
<td class="text-center">{{shop.shopLogo}}</td>
<td class="text-center">{{shop.shopName}}</td>
<td class="text-center">{{shop.stateName}}</td>
<td class="text-center">{{shop.stateName}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openDetailPurchaseApplyModel(auditOrder)">查看
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openAuditOrderModel(auditOrder)">审核
</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="common/audit" callBackListener="myAuditOrders" callBackFunction="notifyAudit"></vc:create>
</div>