Files
PropertyDeployment/resources/Web/MicroCommunityWeb/html/pages/property/printPayFee/printPayFee.html
2025-12-09 20:22:03 +08:00

135 lines
6.6 KiB
HTML

<div>
<div class="text-center">
<div style="color:#000;font-size:26px">{{printPayFeeInfo.communityName}}
<span v-if="printPayFeeInfo.apply == 'Y'">申请单</span>
<span v-if="printPayFeeInfo.apply == 'N'">收据单</span>
<span v-if="printPayFeeInfo.apply == 'R'">退款单</span>
</div>
</div>
<div style="color:#000;font-size:18px;margin-left:20px">
<div class="float-left">
业主:{{printPayFeeInfo.payObjName}}
</div>
<div class="float-right text-right">
<span>单号{{printPayFeeInfo.receiptNum}}</span>
<br />
<span>缴费时间:{{printPayFeeInfo.feeTime}}</span>
</div>
</div>
<table class="table vc-table-border" style="color:#000;font-size:18px">
<thead>
<tr>
<th scope="col" class="text-center" width="80px">
<vc:i18n name="编号" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="收费项目" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="房屋/车辆" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="收费范围" namespace="printPayFee"></vc:i18n>
</th>
<!-- <th scope="col" class="text-center"><span><vc:i18n name="周期" namespace="printPayFee"></vc:i18n></span></th> -->
<th scope="col" class="text-center">
<vc:i18n name="单价" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="面积/用量" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="支付方式" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="应收/实收" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="优惠金额" namespace="printPayFee"></vc:i18n>
</th>
<th scope="col" class="text-center">
<vc:i18n name="备注" namespace="printPayFee"></vc:i18n>
</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)}}
<span>
<vc:i18n name="至" namespace="printPayFee"></vc:i18n>
</span>
{{vc.dateFormat(item.endTime)}}</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.dateFormat(item.endTime)}}
</td>
<!--<td class="text-center">{{item.startTime}}<span><vc:i18n name="至" namespace="printPayFee"></vc:i18n></span>{{item.endTime}}</td>-->
<!-- <td class="text-center">{{item.cycle}}</td> -->
<td class="text-center">{{item.squarePrice}}</br>{{item.units}}</td>
<td class="text-center">{{item.area}}</td>
<td class="text-center">{{item.primeRate}}</td>
<td class="text-center" v-if="item.amount < 0">{{item.receivableAmount}}/{{item.amount}}元(退费)
</td>
<td class="text-center" v-else>{{item.receivableAmount}}/{{item.amount}}元
</td>
<td class="text-center">{{item.discountPrice || 0}}</td>
<td class="text-center" width="200px">{{item.remark}}</td>
</tr>
<tr>
<td colspan="3" class="text-center ">大写人民币(元)</td>
<td colspan="2" class="text-center ">{{vc.changeNumMoneyToChinese(printPayFeeInfo.amount)}}
</td>
<td colspan="1" class="text-center ">{{printPayFeeInfo.amount}}</td>
<td colspan="2" class="text-center ">账户扣款</td>
<td colspan="2" class="text-center ">{{printPayFeeInfo.acctAmount}}
</td>
</tr>
<tr v-if="printPayFeeInfo.content || printPayFeeInfo.qrImg">
<td colspan="6">
<div style="max-width: 600px;" v-html="printPayFeeInfo.content"></div>
</td>
<td colspan="4">
<img v-if="printPayFeeInfo.qrImg" :src="printPayFeeInfo.qrImg" width="100px" height="100px">
</td>
</tr>
</tbody>
</table>
<div class="row" style="color:#000;font-size:18px;margin-left: 10px;">
<div class="float-left" style="width: 25%;">
<vc:i18n name="部门负责人:" namespace="printPayFee"></vc:i18n>
</div>
<div class="float-left" style="width: 25%;"><span>
<vc:i18n name="经办人:" namespace="printPayFee"></vc:i18n>
</span>{{vc.getData('/nav/getUserInfo').name}}</div>
<div class="float-left" style="width: 25%;">
<vc:i18n name="财务收款:" namespace="printPayFee"></vc:i18n>
</div>
<div class="float-left" style="width: 25%;">
<vc:i18n name="客户确认:" namespace="printPayFee"></vc:i18n>
</div>
</div>
<div class="row">
<div class="col-md-12" 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()">
<vc:i18n name="取消" namespace="printPayFee"></vc:i18n>
</button>
</div>
</div>
</div>