mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
98 lines
5.0 KiB
HTML
Executable File
98 lines
5.0 KiB
HTML
Executable File
<div>
|
|
<div class="row margin-top-lg">
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl">
|
|
<select class="custom-select custom-select-sm" v-model="simplifyFeeReceiptInfo.objType"
|
|
@change="_changeSimplifyFeeReceiptFeeTypeCd(simplifyFeeReceiptInfo.objType)">
|
|
<option disabled value="">请选择收费类型</option>
|
|
<option selected value="3333">房屋费</option>
|
|
<option value="6666">车位费</option>
|
|
<option value="7777">合同费</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType == '6666'">
|
|
<select class="custom-select custom-select-sm" v-model="simplifyCarFeeInfo.carId"
|
|
@change="changeSimplifyFeeReceiptCar()">
|
|
<option disabled value="">请选择车辆</option>
|
|
<option v-for="(item,index) in simplifyFeeReceiptInfo.ownerCars" :value="item.carId">{{item.carNum}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl" v-else-if="simplifyFeeReceiptInfo.objType == '7777'">
|
|
<select class="custom-select custom-select-sm" v-model="simplifyCarFeeInfo.contractId"
|
|
@change="changeSimplifyFeeReceiptCar()">
|
|
<option disabled value="">请选择合同</option>
|
|
<option v-for="(item,index) in simplifyFeeReceiptInfo.ownerContracts" :value="item.contractId">
|
|
{{item.contractCode}}
|
|
</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType != '7777'">
|
|
<select class="custom-select custom-select-sm" v-model="simplifyFeeReceiptInfo.ownerFlag"
|
|
@change="_queryFeeReceiptMethod()">
|
|
<option value="F">当前{{simplifyFeeReceiptInfo.objType == '6666'?'车辆':'房屋'}}</option>
|
|
<option value="T">全部{{simplifyFeeReceiptInfo.objType == '6666'?'车辆':'房屋'}}</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-lg-2 padding-right-xs padding-left-xl" v-if="simplifyFeeReceiptInfo.objType != '6666' ">
|
|
|
|
</div>
|
|
<div class="col-lg-6 text-right padding-right-lg">
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_printFeeReceipt()">
|
|
打印
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_printFeeSmallReceipt()">
|
|
打印小票
|
|
</button>
|
|
<button type="button" class="btn btn-primary btn-sm" style="margin-left:10px"
|
|
v-on:click="_printApplyFeeReceipt()">
|
|
申请单
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="margin-top">
|
|
<table class="footable table table-stripped toggle-arrow-tiny margin-top" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">
|
|
<input type="checkbox" class="i-checks" v-bind:checked="simplifyFeeReceiptInfo.quan == true"
|
|
@click="checkAllReceipt($event)">
|
|
</th>
|
|
<th class="text-center">费用类型</th>
|
|
<th class="text-center">{{_getFeeObjName(simplifyFeeReceiptInfo.objType)}}</th>
|
|
<th class="text-center">费用项目</th>
|
|
<th class="text-center">总金额</th>
|
|
<th class="text-center">缴费时间</th>
|
|
<th class="text-center">收据ID</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="feeReceipt in simplifyFeeReceiptInfo.feeReceipts">
|
|
<td class="text-center">
|
|
<input type="checkbox" class="i-checks checReceiptItem" v-bind:value="feeReceipt.receiptId"
|
|
v-model="simplifyFeeReceiptInfo.selectReceipts">
|
|
</td>
|
|
<td class="text-center">{{_getFeeObjName(feeReceipt.objType)}}费</td>
|
|
<td class="text-center">{{feeReceipt.objName}}</td>
|
|
<td class="text-center">{{feeReceipt.feeName}}</td>
|
|
<td class="text-center">{{feeReceipt.amount}}</td>
|
|
<td class="text-center">{{feeReceipt.createTime}}</td>
|
|
<td class="text-center">{{feeReceipt.receiptId}}</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<div class="row">
|
|
<div class="col-sm-12 float-right">
|
|
<vc:create namespace="simplifyFeeReceipt" path="frame/paginationPlus"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |