MicroCommunityWeb/public/components/report/dataReportEarnedStatistics/dataReportEarnedStatistics.html
2023-05-05 03:23:42 +08:00

86 lines
3.6 KiB
HTML

<div class="margin-top">
<div class="row margin-top-lg">
<div class="col-lg-2 padding-right-xs padding-left-xl">
<input v-model="dataReportEarnedStatisticsInfo.roomNum" type="text"
:placeholder="vc.i18n('请填写房屋编号','dataReportEarnedStatistics')" class="form-control">
</div>
<div class="col-lg-2 padding-right-xs padding-right-xl">
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
v-on:click="_qureyDataReportEarnedStatistics()">
<i class="fa fa-search"></i>查询
</button>
</div>
<div class="col-lg-8 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="楼栋" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="户数" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="空置户数" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="费用项1" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="费用项2" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="费用项3" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
<th data-hide="phone" class="text-center">
<vc:i18n name="收费率" namespace="dataReportEarnedStatistics"></vc:i18n>
</th>
</tr>
</thead>
<tbody>
<tr v-for="room in dataReportEarnedStatisticsInfo.rooms">
<td class="text-center">
{{room.floorNum}}-{{room.unitNum}}-{{room.roomNum}}
</td>
<td class="text-center">
{{room.layer}}
</td>
<td class="text-center">
{{room.roomSubTypeName}}
</td>
<td class="text-center">
{{room.builtUpArea}}/{{room.roomArea}}
</td>
<td class="text-center">
{{room.roomRent}}
</td>
<td class="text-center">
{{room.stateName}}
</td>
<td class="text-center">
{{room.roomOweFee || '0.00'}}(按天更新)
</td>
</tr>
</tbody>
</table>
<!-- 分页 -->
<div class="row">
<div class="col-sm-4">
<span>
<span><vc:i18n name="总实收:" namespace="dataReportEarnedStatistics"></vc:i18n> </span>{{dataReportEarnedStatisticsInfo.allOweFeeAmount}}
</span>
</div>
<div class="col-sm-8">
<vc:create namespace="dataReportEarnedStatistics" path="frame/paginationPlus"></vc:create>
</div>
</div>
</div>
<vc:create path="property/ownerExitRoom"></vc:create>
<vc:create path="property/editRoom"></vc:create>
</div>