MicroCommunityWeb/public/pages/property/parkingBoxAreaManage/parkingBoxAreaManage.html
2021-10-18 12:29:23 +08:00

69 lines
3.5 KiB
HTML

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>{{parkingBoxAreaManageInfo.boxName}}停车场</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_goBack()">
返回
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddParkingBoxAreaModal()">
<i class="glyphicon glyphicon-plus"></i>
添加
</button>
</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>
</tr>
</thead>
<tbody>
<tr v-for="parkingBoxArea in parkingBoxAreaManageInfo.parkingBoxAreas">
<td class="text-center">{{parkingBoxArea.paNum}}</td>
<td class="text-center">{{parkingBoxArea.paId}}</td>
<td class="text-center">{{parkingBoxArea.defaultArea == 'T'?'是':'否'}}</td>
<td class="text-center">{{parkingBoxArea.createTime}}</td>
<td class="text-center">{{parkingBoxArea.remark}}</td>
<td class="text-center">
<div class="btn-group" v-if="parkingBoxArea.defaultArea == 'F'">
<button class="btn-white btn btn-xs"
v-on:click="_settingDefaultArea(parkingBoxArea)">默认停车场</button>
</div>
<div class="btn-group" v-if="parkingBoxArea.defaultArea == 'F'">
<button class="btn-white btn btn-xs"
v-on:click="_openDeleteParkingBoxAreaModel(parkingBoxArea)">删除</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/addParkingBoxArea" callBackListener="" callBackFunction=""></vc:create>
<vc:create path="property/deleteParkingBoxArea"></vc:create>
</div>