MicroCommunityWeb/public/components/listStoreManage/listStoreManage.html
2020-03-03 21:02:03 +08:00

105 lines
4.9 KiB
HTML

<div id="component" class="wrapper wrapper-content 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;">
<button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
v-on:click="_moreCondition()">{{listStoreManageInfo.moreCondition ==
true?'隐藏':'更多'}}
</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请输入商户名称"
v-model="listStoreManageInfo.conditions.name" class=" form-control">
</div>
</div>
<div class="col-sm-4">
<select class="custom-select" v-model="listStoreManageInfo.conditions.storeTypeCd">
<option selected value="">请选择商户类型</option>
<option value="800900000003">物业公司</option>
<option value="800900000002">代理商</option>
</select></div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" placeholder="请输入联系电话"
v-model="listStoreManageInfo.conditions.tel" class=" form-control">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm"
v-on:click="_queryListStoreMethod()">
<i class="glyphicon glyphicon-search"></i> 查询
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<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">商户名称</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-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="listStore in listStoreManageInfo.listStores">
<td class="text-center">{{listStore.name}}</td>
<td class="text-center">{{listStore.address}}</td>
<td class="text-center">{{listStore.tel}}</td>
<td class="text-center">{{listStore.storeTypeName}}</td>
<td class="text-center">{{listStore.artificialPerson}}</td>
<td class="text-center">{{listStore.establishment}}</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs"
v-on:click="_openStoresCommunityModel(listStore)">隶属小区
</button>
</div>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<vc:create name="pagination"></vc:create>
</div>
</div>
</div>
</div>
<vc:create name="storesCommunity"></vc:create>
</div>