zhangjiaqing
8 天以前 1cef3adee31c6934c0da4b4f0b8a6f5ac03b364f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<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>&nbsp;打印
            </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>