MicroCommunityWeb/public/pages/admin/shopManage/shopManage.html
2021-06-24 11:13:35 +08:00

110 lines
5.4 KiB
HTML

<div class="animated fadeInRight ecommerce">
<div class="row" v-if="shopManageInfo.orderDetail == false">
<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">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="店铺名称" v-model="shopManageInfo.conditions.shopName"
class=" form-control">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="custom-select" v-model="shopManageInfo.conditions.storeType">
<option value="">请选择店铺类型</option>
<option :value="item.statusCd" v-for="(item,index) in shopManageInfo.storeTypes">
{{item.name}}</option>
</select>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="custom-select" v-model="shopManageInfo.conditions.state">
<option value="">请选择店铺类型</option>
<option value="002">审核通过</option>
<option value="003">审核不通过</option>
</select>
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryOrdersMethod()">
<i class="fa fa-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row" v-if="shopManageInfo.orderDetail == false">
<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>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="shop in shopManageInfo.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">{{shop.createTime}}</td>
<td class="text-center">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openShopWithdrawModel(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/shopWithdraw"></vc:create>
</div>