93 lines
4.6 KiB
HTML
93 lines
4.6 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-md-2 padding-r-0">
|
|
<div class=" border-radius ">
|
|
<div class="margin-xs-r treeview attendance-staff">
|
|
<ul class="list-group text-center border-radius">
|
|
<!-- -->
|
|
<li class="list-group-item node-orgTree " v-for="(item,index) in parkingRegionInfo.parkingAreas"
|
|
:key="index" @click="swatchParkingArea(item)"
|
|
:class="{'vc-node-selected':parkingRegionInfo.conditions.paId == item.paId}">
|
|
{{item.num}}
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-10">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>
|
|
<vc:i18n name="停车区域" namespace="parkingRegion"></vc:i18n>
|
|
</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
<button type="button" class="btn btn-primary btn-sm" v-if="parkingRegionInfo.conditions.paId" v-on:click="_openAddParkingRegionModal()">
|
|
<vc:i18n name="添加" namespace="parkingRegion"></vc:i18n>
|
|
</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">
|
|
<vc:i18n name='编号' namespace='parkingRegion'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='区域编号' namespace='parkingRegion'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='停车场' namespace='parkingRegion'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='创建时间' namespace='parkingRegion'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='备注' namespace='parkingRegion'></vc:i18n>
|
|
</th>
|
|
<th class="text-center">
|
|
<vc:i18n name='操作'></vc:i18n>
|
|
</th>
|
|
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="parkingRegion in parkingRegionInfo.parkingRegions">
|
|
<td class="text-center">{{parkingRegion.prId}}</td>
|
|
<td class="text-center">{{parkingRegion.regionCode}}</td>
|
|
<td class="text-center">{{parkingRegion.paNum}}</td>
|
|
<td class="text-center">{{parkingRegion.createTime}}</td>
|
|
<td class="text-center">{{parkingRegion.remark}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openEditParkingRegionModel(parkingRegion)">
|
|
<vc:i18n name='修改'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_openDeleteParkingRegionModel(parkingRegion)">
|
|
<vc:i18n name='删除'></vc:i18n>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<vc:create path="car/addParkingRegion"></vc:create>
|
|
<vc:create path="car/editParkingRegion"></vc:create>
|
|
<vc:create path="car/deleteParkingRegion"></vc:create>
|
|
|
|
</div> |