MicroCommunityWeb/public/components/property/reportHuaningPayFeeTwo/reportHuaningPayFeeTwo.html
2021-08-15 10:23:39 +08:00

38 lines
1.9 KiB
HTML

<div>
<div class="margin-top">
<div class="row">
<div class="col-sm-12 margin-lr-0 padding-lr-0">
<table class="footable table table-stripped " style="margin-top:10px" data-page-size="10">
<thead>
<tr>
<th class="text-center " style="border-bottom: none;">楼栋号</th>
<th class="text-center" style="border-bottom: none;">应收</th>
<th class="text-center " style="border-bottom: none;">已收</th>
<th class="text-center " style="border-bottom: none;">促收优惠</th>
<th class="text-center " style="border-bottom: none;">未收</th>
<th class="text-center " style="border-bottom: none;">预收</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in reportHuaningPayFeeTwoInfo.fees">
<td class="text-center ">{{fee.floorNum}}</td>
<td class="text-center ">{{fee.receivableAmount}}</td>
<td class="text-center ">{{fee.receivedAmount}}</td>
<td class="text-center">{{fee.receivedAmount1}}</td>
<td class="text-center">{{_getOweFeeTwo(fee)}}</td>
<td class="text-center">{{fee.receivedAmount2}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-sm-5">
<span> </span>
</div>
<div class="col-sm-7 float-right">
<vc:create namespace="reportHuaningPayFeeTwo" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
</div>