mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
优化首页显示问题
This commit is contained in:
parent
e375d94204
commit
f675cb3b36
@ -16,13 +16,15 @@
|
||||
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
||||
<thead>
|
||||
<tr>
|
||||
|
||||
<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>小区编码</th>
|
||||
<th data-hide="phone">联系方式</th>
|
||||
<!-- <th data-hide="phone">地址</th> -->
|
||||
<!-- <th data-hide="phone">地标</th> -->
|
||||
<th data-hide="phone,tablet" >城市编码</th>
|
||||
<!-- <th data-hide="phone,tablet" >城市编码</th> -->
|
||||
<th data-hide="phone">状态</th>
|
||||
<th class="text-right">操作</th>
|
||||
|
||||
@ -30,25 +32,33 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="community in communityInfo.enterCommunityInfo">
|
||||
|
||||
<td>
|
||||
{{community.provName}}
|
||||
</td>
|
||||
<td>
|
||||
{{community.cityName}}
|
||||
</td>
|
||||
<td>
|
||||
{{community.areaName}}
|
||||
</td>
|
||||
<td>
|
||||
{{community.name}}
|
||||
</td>
|
||||
<!-- <td>
|
||||
{{community.address}}
|
||||
</td> -->
|
||||
<td>
|
||||
{{community.communityId}}
|
||||
</td>
|
||||
<td>
|
||||
{{community.tel}}
|
||||
</td>
|
||||
<!-- <td>
|
||||
{{community.address}}
|
||||
</td> -->
|
||||
<!-- <td>
|
||||
{{community.nearbyLandmarks}}
|
||||
</td> -->
|
||||
<td>
|
||||
<!-- <td>
|
||||
{{community.cityCode}}
|
||||
</td>
|
||||
</td> -->
|
||||
<td>
|
||||
{{_showCommunityStatus(community.auditStatusCd)}}
|
||||
</td>
|
||||
|
||||
@ -26,7 +26,7 @@
|
||||
<th class="text-center">开始时间</th>
|
||||
<th class="text-center">到期时间</th>
|
||||
<th class="text-center">状态</th>
|
||||
<th class="text-center">操作</th>
|
||||
<th class="text-right">操作</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -38,7 +38,7 @@
|
||||
<td class="text-center">{{fee.startTime}}</td>
|
||||
<td class="text-center">{{fee.endTime}}</td>
|
||||
<td class="text-center">{{fee.stateName}}</td>
|
||||
<td class="text-left">
|
||||
<td class="text-right">
|
||||
<button class="btn btn-link btn-xs" v-if=" fee.state != '2009001'"
|
||||
v-on:click="_payFee(fee)">缴费
|
||||
</button>
|
||||
|
||||
@ -68,12 +68,15 @@
|
||||
data-page-size="10">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>车位ID</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">业主ID</th>
|
||||
<th data-hide="phone">业主名称</th>
|
||||
<th data-hide="phone">联系方式</th>
|
||||
<th data-hide="phone">业主身份证</th>
|
||||
<th data-hide="phone">车位状态</th>
|
||||
<th>车位ID</th>
|
||||
<th class="text-right">操作</th>
|
||||
|
||||
</tr>
|
||||
@ -81,23 +84,30 @@
|
||||
<tbody>
|
||||
<tr v-for="parkingSpace in parkingSpaceCreateFeeInfo.parkingSpaces">
|
||||
<td>
|
||||
{{parkingSpace.psId}}
|
||||
{{parkingSpace.areaNum}}号
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.areaNum}}号停车场{{parkingSpace.num}}号车位
|
||||
{{parkingSpace.num}}号
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.carNum}}
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.ownerId}}
|
||||
</td>
|
||||
|
||||
<td>
|
||||
{{parkingSpace.ownerName}}
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.link}}
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.idCard}}
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.stateName}}
|
||||
</td>
|
||||
<td>
|
||||
{{parkingSpace.psId}}
|
||||
</td>
|
||||
<td class="text-right">
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openParkingSpaceCreateFeeAddModal(parkingSpace,false)">创建收费
|
||||
|
||||
@ -94,36 +94,49 @@
|
||||
data-page-size="10">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>房屋ID</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">业主ID</th>
|
||||
<th data-hide="phone">业主名称</th>
|
||||
<th data-hide="phone">业主身份证</th>
|
||||
<th data-hide="phone">联系电话</th>
|
||||
<th data-hide="phone">身份证</th>
|
||||
<th>房屋ID</th>
|
||||
<!--<th data-hide="phone">业主ID</th> -->
|
||||
<th class="text-right">操作</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr v-for="room in roomCreateFeeInfo.rooms">
|
||||
<tr v-for="room in roomCreateFeeInfo.rooms">
|
||||
<td>
|
||||
{{room.roomId}}
|
||||
{{room.floorNum}}号楼
|
||||
</td>
|
||||
<td>
|
||||
{{room.unitNum}}单元
|
||||
</td>
|
||||
<td>
|
||||
{{room.floorNum}}号楼{{room.unitNum}}单元{{room.roomNum}}室
|
||||
{{room.roomNum}}室
|
||||
</td>
|
||||
<td>
|
||||
{{room.layer}}层
|
||||
</td>
|
||||
<td>
|
||||
{{room.ownerId}}
|
||||
</td>
|
||||
</td>
|
||||
<td>
|
||||
{{room.ownerName}}
|
||||
</td>
|
||||
<td>
|
||||
{{room.link}}
|
||||
</td>
|
||||
<td>
|
||||
{{room.idCard}}
|
||||
</td>
|
||||
<td>
|
||||
{{room.roomId}}
|
||||
</td>
|
||||
<!--
|
||||
<td>
|
||||
{{room.ownerId}}
|
||||
</td> -->
|
||||
<td class="text-right">
|
||||
<div class="btn-group">
|
||||
<button class="btn-white btn btn-xs" v-on:click="_openRoomCreateFeeAddModal(room,false)">创建收费
|
||||
|
||||
Loading…
Reference in New Issue
Block a user