MicroCommunityWeb/public/pages/property/printSmallPayFee/printSmallPayFee.html
2022-06-20 17:47:51 +08:00

39 lines
2.9 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<startprint></startprint>
<div class="print_container">
<div style="color:#000;font-size:32px" class="text-center"><span><vc:i18n name="缴费收据单" namespace="printSmallPayFee"></vc:i18n></span></div>
<span>**************************</span>
<div class="section2" style="font-size: 12px; margin-left: 5px;" >
<div><span><vc:i18n name="单号" namespace="printSmallPayFee"></vc:i18n></span>{{printSmallPayFeeInfo.receiptNum}}</div>
<div><span><vc:i18n name="房号" namespace="printSmallPayFee"></vc:i18n></span>{{printSmallPayFeeInfo.roomName}}</div>
<div><span><vc:i18n name="业主" namespace="printSmallPayFee"></vc:i18n></span>{{printSmallPayFeeInfo.payObjName}}</div>
<div><span><vc:i18n name="时间" namespace="printSmallPayFee"></vc:i18n></span>{{printSmallPayFeeInfo.feeTime}}</div>
</div>
<span>**************************</span>
<div class="section2" style="font-size: 12px; margin-left: 5px;" v-for="(item,index) in printSmallPayFeeInfo.fees">
<div><span><vc:i18n name="收费项目" namespace="printSmallPayFee"></vc:i18n></span>{{item.feeName}}</div>
<div><span><vc:i18n name="收费范围" namespace="printSmallPayFee"></vc:i18n></span>{{vc.dateFormat(item.startTime)}}<span><vc:i18n name="至" namespace="printSmallPayFee"></vc:i18n></span>{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}</div>
<div><span><vc:i18n name="单价" namespace="printSmallPayFee"></vc:i18n></span>/固定费:{{item.squarePrice}}</div>
<div><span><vc:i18n name="面积" namespace="printSmallPayFee"></vc:i18n></span>/用量:{{item.area}}</div>
<div><span><vc:i18n name="金额" namespace="printSmallPayFee"></vc:i18n></span>{{item.amount < 0 ? item.amount + "(退费)" : item.amount}}</div>
<div><span><vc:i18n name="备注" namespace="printSmallPayFee"></vc:i18n></span>{{item.remark}}</div>
<span>**************************</span>
</div>
<div class="section5" style="font-size: 12px; margin-left: 5px;">
<div><span><vc:i18n name="总计" namespace="printSmallPayFee"></vc:i18n></span>{{printSmallPayFeeInfo.amount}}</div>
<div v-html="printSmallPayFeeInfo.content"></div>
<div><img :src="printSmallPayFeeInfo.qrImg" width="100px" height="100px"></div>
</div>
<span>**************************</span>
</div>
<endprint></endprint>
<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="printSmallPayFee"></vc:i18n></span>
</button>
</div>
</div>