MicroCommunityWeb/public/pages/property/listStoreManage/listStoreManage.html
2023-09-04 00:50:33 +08:00

105 lines
5.8 KiB
HTML

<div class="animated fadeInRight ecommerce">
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5><span><vc:i18n name="查询条件" namespace="listStoreManage"></vc:i18n></span></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="vc.i18n('请输入商户名称','listStoreManage')"
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="">{{vc.i18n('请选择商户类型','listStoreManage')}}</option>
<option value="800900000003">{{vc.i18n('物业公司','listStoreManage')}}</option>
<option value="800900000005">{{vc.i18n('商家','listStoreManage')}}</option>
</select></div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请输入联系电话','listStoreManage')"
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="fa fa-search"></i> <span><vc:i18n name="查询" namespace="listStoreManage"></vc:i18n></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5><span><vc:i18n name="商户信息" namespace="listStoreManage"></vc:i18n></span></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"><span><vc:i18n name="商户名称" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="商户地址" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="联系电话" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="商户类型" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="企业法人" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-center"><span><vc:i18n name="成立日期" namespace="listStoreManage"></vc:i18n></span></th>
<th class="text-right"><span><vc:i18n name="操作" namespace="listStoreManage"></vc:i18n></span></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)"><span><vc:i18n name="隶属小区" namespace="listStoreManage"></vc:i18n></span>-->
<!-- </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/storesCommunity"></vc:create>
</div>