mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-26 08:16:47 +08:00
118 lines
6.0 KiB
HTML
118 lines
6.0 KiB
HTML
<div>
|
|
<div class="row" v-if="shopAuditManageInfo.componentShow == 'shopAuditManage'">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>查询条件</h5>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<input type="text" placeholder="请输入审核ID"
|
|
v-model="shopAuditManageInfo.conditions.auditId" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3" >
|
|
<div class="form-group">
|
|
<input type="text" placeholder="请输入店铺名称"
|
|
v-model="shopAuditManageInfo.conditions.shopName" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3" >
|
|
<div class="form-group">
|
|
<input type="text" placeholder="请输入退货联系人"
|
|
v-model="shopAuditManageInfo.conditions.returnPerson" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3" >
|
|
<div class="form-group">
|
|
<input type="text" placeholder="请输入退货联系电话"
|
|
v-model="shopAuditManageInfo.conditions.returnLink" class=" form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<select class="custom-select" v-model="shopAuditManageInfo.conditions.state">
|
|
<option selected value="" >请选择审核状态</option>
|
|
<option value="001">待审核</option>
|
|
<option value="002">审核通过</option>
|
|
<option value="003">审核不通过</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryShopAuditMethod()">
|
|
<i class="glyphicon glyphicon-search"></i> 查询
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" v-if="shopAuditManageInfo.componentShow == 'shopAuditManage'">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>店铺审核信息</h5>
|
|
</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>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="shopAudit in shopAuditManageInfo.shopAudits">
|
|
<td class="text-center">{{shopAudit.auditId}}</td>
|
|
<td class="text-center">{{shopAudit.shopName}}</td>
|
|
<td class="text-center">{{shopAudit.sendAddress}}</td>
|
|
<td class="text-center">{{shopAudit.returnPerson}}</td>
|
|
<td class="text-center">{{shopAudit.returnLink}}</td>
|
|
<td class="text-center">{{_auditState(shopAudit.state)}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group" v-if="shopAudit.state == '001'">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openAuditOpenShopModel(shopAudit)">审核
|
|
</button>
|
|
</div>
|
|
<div class="btn-group" v-else>
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openAuditOpenShopModel(shopAudit)">查看
|
|
</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/addShopAudit" callBackListener="" callBackFunction=""></vc:create>
|
|
<vc:create path="admin/editShopAudit"></vc:create>
|
|
<vc:create path="admin/deleteShopAudit"></vc:create>
|
|
|
|
<div v-bind:class="{no_display:shopAuditManageInfo.componentShow != 'viewShopAuditInfo'}">
|
|
<vc:create path="admin/viewShopAuditInfo"></vc:create>
|
|
</div>
|
|
|
|
</div> |