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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<div>
 
    <div class=" text-center">
        <h1>{{printPayFeeInfo.printName}}缴费通知单</h1>
        <h3></h3>
    </div>
    <div class="row margin-top" style="color:#000;font-size:14px">
        <div class="col-sm-4">
            业主:{{printPayFeeInfo.ownerName}}
        </div>
        <div class="col-sm-4">
        </div>
        <div class="col-sm-4">
            打印时间:{{printPayFeeInfo.feeTime}}
        </div>
    </div>
    <table class="table vc-table-border margin-top" style="color:#000;font-size:14px">
        <thead>
            <tr>
                <th scope="col" class="text-center">
                    <vc:i18n name="收费对象" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="项目名称" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="费用期间" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="单位" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="面积/用量" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="单价" namespace="printOweFee"></vc:i18n>
                </th>
                <th scope="col" class="text-center">
                    <vc:i18n name="金额" namespace="printOweFee"></vc:i18n>
                </th>
            </tr>
        </thead>
        <tbody>
            <tr v-for="(item,index) in printPayFeeInfo.fees" class="vc-table-border">
                <td class="text-center">{{item.payerObjName}}</td>
                <td class="text-center">{{item.feeName}}</td>
                <td class="text-center" v-if="item.preDegrees">
                    {{vc.dateFormat(item.endTime)}}至{{_getDeadlineTime(item)}}
                    </br>
                    {{item.preDegrees}} 至 {{item.curDegrees}}
                </td>
                <td class="text-center" v-else> {{vc.dateFormat(item.endTime)}}至{{_getDeadlineTime(item)}}
                </td>
                <td class="text-center">元</td>
                <td class="text-center" v-if="item.preDegrees">{{(item.curDegrees-item.preDegrees).toFixed(2)}}</td>
                <td class="text-center" v-else>{{printPayFeeInfo.builtUpArea}}</td>
                <td class="text-center" v-if="item.preDegrees && item.mwPrice > 0">{{item.mwPrice}}</td>
                <td class="text-center" v-else>{{item.squarePrice}}/{{item.additionalAmount}}</td>
                <td class="text-center">{{item.feeTotalPrice}}</td>
            </tr>
            <tr>
                <td colspan="1" class="text-center ">
                    <vc:i18n name="大写人民币(元)" namespace="printOweFee"></vc:i18n>
                </td>
                <td colspan="4" class="text-center ">{{vc.changeNumMoneyToChinese(printPayFeeInfo.feePrices)}}
                </td>
                <td colspan="4" class="text-center ">{{printPayFeeInfo.feePrices}}</td>
            </tr>
            <tr height="60px" v-if="printPayFeeInfo.content">
                <td colspan="3">
                    <!-- {{printPayFeeInfo.content}} -->
                    <div style="max-width: 600px;" v-html="printPayFeeInfo.content"></div>
                </td>
                <td colspan="4">
                    <img :src="printPayFeeInfo.qrImg" width="150px" height="150px">
                </td>
            </tr>
        </tbody>
    </table>
 
    <div 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="printOweFee"></vc:i18n>
            </span>
        </button>
    </div>
 
</div>