MicroCommunityWeb/public/pages/property/printOweFee/printOweFee.html
2022-11-24 16:25:10 +08:00

71 lines
4.0 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>
<div>
<div>
<div class=" text-center">
<h1>{{printPayFeeInfo.communityName}}</h1>
<h3><span><vc:i18n name="收费通知单" namespace="printOweFee"></vc:i18n></span></h3>
</div>
<div class="row margin-top">
<div class="col-sm-4">
<span>{{printPayFeeInfo.payObjName}}</span>
</div>
<div class="col-sm-4">
<span></span>
</div>
<div class="col-sm-4">
<span><span><vc:i18n name="打印时间" namespace="printOweFee"></vc:i18n></span>{{printPayFeeInfo.feeTime}}</span>
</div>
</div>
<table class="table vc-table-border margin-top">
<thead>
<tr>
<th scope="col" class="text-center"><span><vc:i18n name="项目名称" namespace="printOweFee"></vc:i18n></span></th>
<th scope="col" class="text-center"><span><vc:i18n name="费用期间" namespace="printOweFee"></vc:i18n></span></th>
<th scope="col" class="text-center"><span><vc:i18n name="单位" namespace="printOweFee"></vc:i18n></span></th>
<th scope="col" class="text-center"><span><vc:i18n name="面积" namespace="printOweFee"></vc:i18n></span></th>
<th scope="col" class="text-center"><span><vc:i18n name="单价" namespace="printOweFee"></vc:i18n></span></th>
<th scope="col" class="text-center"><span><vc:i18n name="金额" namespace="printOweFee"></vc:i18n></span></th>
</tr>
</thead>
<tbody>
<tr v-for="(item,index) in printPayFeeInfo.fees" class="vc-table-border">
<td class="text-center">{{item.feeName}}</td>
<td class="text-center">{{vc.dateFormat(item.endTime)}}<span><vc:i18n name="至" namespace="printOweFee"></vc:i18n></span>{{vc.dateFormat(item.deadlineTime)}}
</td>
<td class="text-center"><span><vc:i18n name="元" namespace="printOweFee"></vc:i18n></span></td>
<td class="text-center">{{printPayFeeInfo.builtUpArea}}</td>
<td class="text-center">{{item.squarePrice}}/{{item.additionalAmount}}</td>
<td class="text-center">{{item.feePrice}}</td>
</tr>
<tr>
<td colspan="1" class="text-center "><span><vc:i18n name="大写人民币" namespace="printOweFee"></vc:i18n></span>(元)</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">
<p style="max-width: 600px;">
<!-- {{printPayFeeInfo.content}} -->
<div v-html="printPayFeeInfo.content"></div>
</p>
</td>
<td colspan="4">
<img :src="printPayFeeInfo.qrImg" width="100px" height="100px">
</td>
</tr>
</tbody>
</table>
</div>
<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>
</div>