优化 欠费缴费

This commit is contained in:
java110 2020-08-05 11:48:03 +08:00
parent 89a9597049
commit b898f1b024
2 changed files with 14 additions and 11 deletions

View File

@ -12,7 +12,6 @@
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group input-group">
<input type="text" placeholder="请选择楼栋"
@ -90,8 +89,6 @@
data-page-size="10">
<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>
@ -105,14 +102,9 @@
<tbody>
<tr v-for="room in roomCreateFeeInfo.rooms">
<td>
{{room.floorNum}}号楼
{{room.floorNum}}栋{{room.unitNum}}单元{{room.roomNum}}室
</td>
<td>
{{room.unitNum}}单元
</td>
<td>
{{room.roomNum}}室
</td>
<td>
{{room.layer}}层
</td>
@ -138,9 +130,16 @@
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openViewRoomCreateFee(room)">查看收
<button class="btn-white btn btn-xs" v-on:click="_toOwnerPayFee(room)">欠费缴
</button>
</div>
<div class="btn-group">
<button class="btn-white btn btn-xs" v-on:click="_openViewRoomCreateFee(room)">查看费用
</button>
</div>
</td>
</tr>
</tbody>

View File

@ -166,6 +166,10 @@
},
_openChooseFloorMethod:function(){
vc.emit('searchFloor','openSearchFloorModel',{});
},
_toOwnerPayFee:function(_room){
let roomName = _room.floorNum + "栋"+_room.unitNum+"单元"+_room.roomNum+"室"
vc.jumpToPage('/admin.html#/pages/property/owePayFeeOrder?payObjId='+_room.roomId+"&payObjType=3333&roomName="+roomName);
}
}
});