<div>
|
<div class="top-1 ">
|
<h1 class="text-center" style="color:#000;font-weight: 400;">项目汇总表</h1>
|
</div>
|
|
<div class="context-1">
|
<table class="table vc-table-border" style="color:#000;font-size:20px">
|
<thead>
|
<tr>
|
<th class="text-center">
|
<span><vc:i18n name="日期" namespace="reportFeeSummaryPrint"></vc:i18n></span>
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="历史欠费" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="当月应收" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="应收合计" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="当月实收" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="欠费追回" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="预交费用" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="实收合计" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="欠费金额" namespace="reportFeeSummaryPrint"></vc:i18n></span>(单位:元)
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="收费率" namespace="reportFeeSummaryPrint"></vc:i18n></span>
|
</th>
|
<th class="text-center">
|
<span><vc:i18n name="更新时间" namespace="reportFeeSummaryPrint"></vc:i18n></span>
|
</th>
|
</tr>
|
</thead>
|
<tbody class="vc-table-border" style="color:#000;font-size:20px">
|
<tr v-for="fee in reportFeeSummaryPrintInfo.fees" class="vc-table-border">
|
<td class="text-center">{{fee.feeYear+'年'+fee.feeMonth+'月'}}</td>
|
<td class="text-center">{{fee.hisOweAmount}}</td>
|
<td class="text-center">{{fee.curReceivableAmount}}</td>
|
<td class="text-center">{{_computeSum(fee.hisOweAmount,fee.curReceivableAmount)}}</td>
|
<td class="text-center">{{fee.curReceivedAmount}}</td>
|
<td class="text-center">{{fee.hisOweReceivedAmount}}</td>
|
<td class="text-center">{{fee.preReceivedAmount}}</td>
|
<td class="text-center">
|
{{_computeSum(_computeSum(fee.hisOweReceivedAmount,fee.preReceivedAmount),fee.curReceivedAmount)}}
|
</td>
|
<td class="text-center">{{_computeOweFee(fee)}}</td>
|
<td class="text-center">{{fee.chargeRate}}</td>
|
<td class="text-center">{{fee.updateTime}}</td>
|
</tr>
|
|
</tbody>
|
</table>
|
<div class="text-right" id="print-btn">
|
<button class="btn btn-primary float-right" type="button" v-on:click="_printPurchaseApplyDiv()">
|
<i class="fa fa-check"></i> 打印
|
</button>
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;" v-on:click="_closePage()"><span><vc:i18n name="取消" namespace="printPayFeeBangTai"></vc:i18n></span>
|
</button>
|
</div>
|
</div>
|
|
|
</div>
|