MicroCommunityWeb/public/pages/property/printPayFee/printPayFee.html
2021-08-05 00:32:16 +08:00

96 lines
5.3 KiB
HTML
Executable File

<div>
<div>
<div>
<div class=" text-center">
<div style="color:#000;font-size:36px">{{printPayFeeInfo.communityName}} {{printPayFeeInfo.apply ==
'Y'?'申请单':'收据单'}}</div>
<span style="color:#000;font-size:20px">单号:{{printPayFeeInfo.receiptNum}}</span>
</div>
<div style="color:#000;font-size:20px;margin-left:20px">
<div class="float-left">
<span>业主:{{printPayFeeInfo.payObjName}}</span>
</div>
<div class="float-right text-right">
<span>缴费时间:{{printPayFeeInfo.feeTime}}</span>
</div>
</div>
<table class="table vc-table-border" style="color:#000;font-size:20px">
<thead>
<tr>
<th scope="col" class="text-center" width="80px">编号</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 class="vc-table-border" style="color:#000;font-size:20px">
<tr v-for="(item,index) in printPayFeeInfo.fees" class="vc-table-border">
<th scope="row" class="text-center">{{index +1}}</th>
<td class="text-center">{{item.feeName}}</td>
<td class="text-center">{{item.objName}}</td>
<td class="text-center" v-if="item.preDegrees">
{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}</br>
{{item.preDegrees}} 至 {{item.curDegrees}}
</td>
<!-- 根据山东 需求 如果为押金时 显示为无-->
<td class="text-center" v-else-if="item.feeTypeCd == '888800010006'">
</td>
<td class="text-center" v-else>
{{vc.dateFormat(item.startTime)}}至{{vc.dateSubOneDay(vc.dateFormat(item.startTime),vc.dateFormat(item.endTime),item.feeFlag)}}
</td>
<!--<td class="text-center">{{item.startTime}}至{{item.endTime}}</td>-->
<td class="text-center">{{item.cycle}}</td>
<td class="text-center">{{item.squarePrice}}</td>
<td class="text-center">{{item.area}}</td>
<td class="text-center"></td>
<td class="text-center">{{item.amount}}</td>
<td class="text-center" width="200px">{{item.remark}}</td>
</tr>
<tr>
<td colspan="3" class="text-center ">大写人民币(元)</td>
<td colspan="4" class="text-center ">{{vc.changeNumMoneyToChinese(printPayFeeInfo.amount)}}
</td>
<td colspan="3" class="text-center ">{{printPayFeeInfo.amount}}</td>
</tr>
<tr height="60px">
<td colspan="6">
<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 class="row">
<div class="col-md-10">
<div class="row" style="color:#000;font-size:20px;margin-left: 10px;">
<div class="float-left" style="width: 20%;">部门负责人:</div>
<div class="float-left" style="width: 20%;">经办人:</div>
<div class="float-left" style="width: 20%;">财务收款:</div>
<div class="float-left" style="width: 20%;">客户确认:</div>
</div>
</div>
<div class="col-md-2" 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>
</div>