mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
65 lines
3.4 KiB
HTML
Executable File
65 lines
3.4 KiB
HTML
Executable File
<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">
|
|
<img style="width: 60px; height: 60px; border-radius: 5px;"
|
|
v-bind:src="shop.shopLogo"></img>
|
|
</td>
|
|
<td class="text-center">{{shop.shopName}}</td>
|
|
<td class="text-center">{{shop.shopTypeName}}</td>
|
|
<td class="text-center">{{shop.storeName}}</td>
|
|
<td class="text-center">{{shop.storeAddress}}</td>
|
|
<td class="text-center">{{shop.storeTel}}</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="_openAuditOpenShopModel(shop)">审核
|
|
</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="auditOpenShop" callBackFunction="notifyAudit"></vc:create>
|
|
</div> |