mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 21:59:12 +08:00
65 lines
2.6 KiB
HTML
65 lines
2.6 KiB
HTML
<div class="margin-top">
|
|
<div class="text-right">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportReportEarnedExcel()">
|
|
<i class="fa fa-plus"></i>
|
|
<span>
|
|
<vc:i18n name="导出" namespace="dataReportEarnedStatistics"></vc:i18n>
|
|
</span>
|
|
</button>
|
|
</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="实收" namespace="dataReportEarnedStatistics"></vc:i18n>
|
|
</th>
|
|
<th class="text-center" v-for="(item,index) in dataReportEarnedStatisticsInfo.feeTypeCds">
|
|
{{item.name}}
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="fee in dataReportEarnedStatisticsInfo.fees">
|
|
<td class="text-center">
|
|
{{fee.floorNum}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{fee.roomCount}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{fee.feeRoomCount}}
|
|
</td>
|
|
<td class="text-center">
|
|
{{fee.receivedFee}}
|
|
</td>
|
|
<template v-for="(item,index) in dataReportEarnedStatisticsInfo.feeTypeCds">
|
|
<td class="text-center">
|
|
{{fee['receivedFee'+item.statusCd] || 0}}
|
|
</td>
|
|
</template>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
<span>
|
|
<vc:i18n name="总实收:" namespace="dataReportEarnedStatistics"></vc:i18n>
|
|
</span><span>{{dataReportEarnedStatisticsInfo.feeAmount}}</span>
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<vc:create namespace="dataReportEarnedStatistics" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |