mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
70 lines
3.2 KiB
HTML
70 lines
3.2 KiB
HTML
<div>
|
|
<div>
|
|
<div>
|
|
<div class=" text-center">
|
|
<h1>{{printPayFeeInfo.communityName}}</h1>
|
|
<h3>收费通知单</h3>
|
|
</div>
|
|
<div class="row margin-top">
|
|
<div class="col-sm-4">
|
|
<span>{{printPayFeeInfo.roomName}}</span>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<span></span>
|
|
</div>
|
|
<div class="col-sm-4">
|
|
<span>打印时间:{{printPayFeeInfo.feeTime}}</span>
|
|
</div>
|
|
</div>
|
|
<table class="table vc-table-border margin-top">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" class="text-center">项目名称</th>
|
|
<th scope="col" class="text-center">费用期间</th>
|
|
<th scope="col" class="text-center">单位</th>
|
|
<th scope="col" class="text-center">面积</th>
|
|
<th scope="col" class="text-center">单价</th>
|
|
<th scope="col" class="text-center">金额</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)}}至{{vc.dateFormat(item.deadlineTime)}}
|
|
</td>
|
|
<td class="text-center">元</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 ">大写人民币(元)</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">
|
|
<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> 打印
|
|
</button>
|
|
<button type="button" class="btn btn-warning float-right" style="margin-right:20px;"
|
|
v-on:click="_closePage()">取消
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div> |