MicroCommunityWeb/public/pages/property/printPayFee/printPayFee.html
2020-09-23 18:04:54 +08:00

74 lines
3.7 KiB
HTML

<div>
<div>
<div>
<div class=" text-center">
<h1>{{printPayFeeInfo.communityName}} 收据单</h1>
</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 table-bordered 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>
<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">
<th scope="row" class="text-center">{{index +1}}</th>
<td class="text-center">{{item.feeName}}</td>
<td class="text-center">{{vc.dateFormat(item.startTime)}}至{{vc.dateFormat(item.endTime)}}</td>
<td class="text-center">{{item.cycle}}</td>
<td class="text-center">{{item.squarePrice}}</td>
<td class="text-center">{{item.additionalAmount}}</td>
<td class="text-center">{{item.area}}</td>
<td class="text-center"></td>
<td class="text-center">{{item.amount}}</td>
<td class="text-center">{{item.remark}}</td>
</tr>
<tr >
<td colspan="1" class="text-center ">大写人民币(元)</td>
<td colspan="5" class="text-center ">{{vc.changeNumMoneyToChinese(printPayFeeInfo.amount)}}
</td>
<td colspan="4" class="text-center ">{{printPayFeeInfo.amount}}</td>
</tr>
<tr height="60px" v-if="printPayFeeInfo.wechatName != ''">
<td colspan="10" >
<p>
尊敬的业主:
</p>
<p>
您好!感谢您在百忙中来缴费,为了更好的服务您,我们已开通网上缴费,请您关注《{{printPayFeeInfo.wechatName}}》公众号并注册,实现网上缴费。
</p>
</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()">取消
</button>
</div>
</div>
</div>