MicroCommunityWeb/public/components/admin/chooseShopAudit/chooseShopAudit.html
2021-11-29 14:39:12 +08:00

93 lines
5.6 KiB
HTML

<div id = "chooseShopAuditModel" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="chooseShopAuditModelLabel" aria-hidden="true" >
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h3 class="modal-title" id="chooseShopAuditModelLabel">选择店铺审核</h3>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class=" row">
<div class="col-lg-12">
<div class="ibox ">
<div class="row">
<div class="col-sm-7 m-b-xs">
</div>
<div class="col-sm-5">
<div class="input-group">
<input placeholder="输入店铺审核名称" type="text" v-model="chooseShopAuditInfo._currentShopAuditName" class="form-control form-control-sm">
<span class="input-group-append">
<button type="button" class="btn btn-sm btn-primary" v-on:click="queryShopAudits()">查询</button>
</span>
</div>
</div>
</div>
<div class="table-responsive" style="margin-top:15px">
<table class="table table-striped">
<thead>
<tr>
<th class="text-center">审核店铺ID</th>
<th class="text-center">审核ID</th>
<th class="text-center">店铺ID</th>
<th class="text-center">店铺logo</th>
<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>
<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>
<th class="text-center">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="shopAudit in chooseShopAuditInfo.shopAudits">
<td class="text-center">{{shopAudit.auditId}}</td>
<td class="text-center">{{shopAudit.auditId}}</td>
<td class="text-center">{{shopAudit.shopId}}</td>
<td class="text-center">{{shopAudit.shopLogo}}</td>
<td class="text-center">{{shopAudit.storeId}}</td>
<td class="text-center">{{shopAudit.shopName}}</td>
<td class="text-center">{{shopAudit.shopDesc}}</td>
<td class="text-center">{{shopAudit.mapX}}</td>
<td class="text-center">{{shopAudit.mapY}}</td>
<td class="text-center">{{shopAudit.sendAddress}}</td>
<td class="text-center">{{shopAudit.returnAddress}}</td>
<td class="text-center">{{shopAudit.returnPerson}}</td>
<td class="text-center">{{shopAudit.returnLink}}</td>
<td class="text-center">{{shopAudit.state}}</td>
<td class="text-center">{{shopAudit.shopType}}</td>
<td class="text-center">{{shopAudit.openType}}</td>
<td class="text-center">{{shopAudit.areaCode}}</td>
<td class="text-center">{{shopAudit.auditOpinion}}</td>
<td class="text-center">{{shopAudit.applyOpinion}}</td>
<td class="text-center">{{shopAudit.statusCd}}</td>
<td>
<button class="btn btn-primary btn-xs" v-on:click="chooseShopAudit(shopAudit)">选择</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>