Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/components/car/aCarDetailApplySpace/aCarDetailApplySpace.html
2025-12-09 20:22:03 +08:00

90 lines
4.4 KiB
HTML

<div class="">
<div class="row ">
<div class="col-lg-12 text-right">
</div>
</div>
<div class="margin-top">
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
<thead>
<tr>
<th class="text-center">
<vc:i18n name="申请ID" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="车牌号" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="停车位" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="汽车品牌" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="车辆类型" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="颜色" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="起租时间" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="结租时间" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="申请人" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="手机号" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
<th class="text-center">
<vc:i18n name="审核结果" namespace="aCarDetailApplySpace"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="parkingSpaceApply in aCarDetailApplySpaceInfo.applys">
<td class="text-center">{{parkingSpaceApply.applyId}}</td>
<td class="text-center">{{parkingSpaceApply.carNum}}</td>
<td class="text-center" v-if="parkingSpaceApply.psId != null && parkingSpaceApply.psId != ''">
{{parkingSpaceApply.areaNum}}停车场 - {{parkingSpaceApply.num}}停车位
</td>
<td class="text-center" v-else></td>
<td class="text-center">{{parkingSpaceApply.carBrand}}</td>
<td class="text-center">{{_getParkingSpaceApplyCatType(parkingSpaceApply.carType)}}</td>
<td class="text-center">{{parkingSpaceApply.carColor}}</td>
<td class="text-center">{{parkingSpaceApply.startTime}}</td>
<td class="text-center">{{parkingSpaceApply.endTime}}</td>
<td class="text-center">{{parkingSpaceApply.applyPersonName}}</td>
<td class="text-center">{{parkingSpaceApply.applyPersonLink}}</td>
<td class="text-center">
<span class="badge badge-success" v-if="parkingSpaceApply.state == '1001'">
{{_getParkingSpaceApplyState(parkingSpaceApply.state)}}
</span>
<span class="badge badge-danger" v-else-if="parkingSpaceApply.state == '4004'">
{{_getParkingSpaceApplyState(parkingSpaceApply.state)}}
</span>
<span class="badge badge-info" v-else-if="parkingSpaceApply.state == '2002'">
{{_getParkingSpaceApplyState(parkingSpaceApply.state)}}
</span>
<span class="badge badge-info"
v-else>{{_getParkingSpaceApplyState(parkingSpaceApply.state)}}</span>
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
</div>
<div class="col-sm-8">
<vc:create namespace="aCarDetailApplySpace" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>