MicroCommunityWeb/public/pages/property/parkingSpaceCreateFee/parkingSpaceCreateFee.html
2020-05-01 01:58:04 +08:00

130 lines
6.0 KiB
HTML

<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;">
<!-- <button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"-->
<!-- v-on:click="_moreCondition()">{{parkingSpaceCreateFeeInfo.moreCondition == true?'隐藏':'更多'}}-->
<!-- </button>-->
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group input-group">
<input type="text" placeholder="请填写车位编码" class="form-control form-control-sm"
v-model="parkingSpaceCreateFeeInfo.conditions.num">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<div class="form-group">
<input type="text" placeholder="请填写车牌号" class="form-control form-control-sm"
v-model="parkingSpaceCreateFeeInfo.conditions.carNum">
</div>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请填写车位ID" class="form-control form-control-sm"
v-model="parkingSpaceCreateFeeInfo.conditions.psId">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryParkingSpaceMethod()"><i
class="fa fa-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;">
<button type="button" class="btn btn-primary btn-sm"
style="margin-left:10px" v-on:click="_openParkingSpaceCreateFeeAddModal(null,true)">
<i class="fa fa-plus"></i> 批量创建
</button>
<!-- <button type="button" class="btn btn-primary btn-sm"-->
<!-- style="margin-left:10px" v-on:click="_openAddParkingSpace()">-->
<!-- <i class="fa fa-plus"></i> 批量取消收费-->
<!-- </button>-->
</div>
</div>
<div class="ibox-content">
<table class="footable table table-stripped toggle-arrow-tiny" style="margin-top:10px"
data-page-size="10">
<thead>
<tr>
<th>车位ID</th>
<th data-hide="phone">车位编号</th>
<th data-hide="phone">车牌号</th>
<th data-hide="phone">业主ID</th>
<th data-hide="phone">业主名称</th>
<th data-hide="phone">业主身份证</th>
<th class="text-right">操作</th>
</tr>
</thead>
<tbody>
<tr v-for="parkingSpace in parkingSpaceCreateFeeInfo.parkingSpaces">
<td>
{{parkingSpace.psId}}
</td>
<td>
{{parkingSpace.areaNum}}号停车场{{parkingSpace.num}}号车位
</td>
<td>
{{parkingSpace.carNum}}
</td>
<td>
{{parkingSpace.ownerId}}
</td>
<td>
{{parkingSpace.ownerName}}
</td>
<td>
{{parkingSpace.idCard}}
</td>
<td class="text-right">
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openParkingSpaceCreateFeeAddModal(parkingSpace,false)">创建收费
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openViewParkingSpaceCreateFee(parkingSpace)">查看收费
</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="property/parkingSpaceCreateFeeAdd"
></vc:create>
</div>