mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
151 lines
7.0 KiB
HTML
151 lines
7.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()">{{listOwnerCarInfo.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="请输入车牌号" v-model="listOwnerCarInfo.conditions.carNum"
|
|
class="form-control">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<div class="form-group">
|
|
<input type="text" placeholder="请填写车位编号" class=" form-control"
|
|
v-model="listOwnerCarInfo.num">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<select class="custom-select" v-model="listOwnerCarInfo.conditions.state">
|
|
<option selected value="">必填,请选择车位状态</option>
|
|
<option value="1001">正常</option>
|
|
<option value="2002">欠费状态</option>
|
|
<option value="3003">车位释放</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryMethod()"><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;">
|
|
|
|
<form>
|
|
<div class="form-row">
|
|
<div class="col">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_addOwnerCar()">
|
|
<i class="fa fa-plus"></i>
|
|
添加
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th>车牌号</th>
|
|
<th data-hide="phone">车辆品牌</th>
|
|
<th data-hide="phone">车辆类型</th>
|
|
<th data-hide="phone">颜色</th>
|
|
<th data-hide="phone">业主</th>
|
|
<th data-hide="phone">车位</th>
|
|
<th data-hide="phone">起租时间</th>
|
|
<th data-hide="phone">截止时间</th>
|
|
<th data-hide="phone">状态</th>
|
|
<th class="text-right">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="car in listOwnerCarInfo.ownerCars">
|
|
<td>
|
|
{{car.carNum}}
|
|
</td>
|
|
<td>
|
|
{{car.carBrand}}
|
|
</td>
|
|
<td>
|
|
{{car.carType}}
|
|
</td>
|
|
<td>
|
|
{{car.carColor}}
|
|
</td>
|
|
<td>
|
|
{{car.ownerName}}({{car.link}})
|
|
</td>
|
|
<td v-if="car.areaNum">
|
|
{{car.areaNum}}车场{{car.num}}车位
|
|
</td>
|
|
<td v-else>
|
|
无
|
|
</td>
|
|
<td>
|
|
{{car.startTime}}
|
|
</td>
|
|
<td>
|
|
{{car.endTime}}
|
|
</td>
|
|
<td>
|
|
{{car.state}}
|
|
</td>
|
|
<td class="text-right">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditParkingSpaceModel(car)">修改</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDelOwnerCarModel(car)">删除</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/addParkingSpace" notifyLoadDataComponentName="lisOwnerCar"></vc:create>
|
|
<vc:create path="property/editParkingSpace" notifyLoadDataComponentName="lisOwnerCar"></vc:create>
|
|
<vc:create path="property/deleteOwnerCar" notifyLoadDataComponentName="lisOwnerCar"></vc:create>
|
|
|
|
</div> |