mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-27 08:29:59 +08:00
137 lines
6.8 KiB
HTML
137 lines
6.8 KiB
HTML
<div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox ">
|
|
<div class="ibox-title">
|
|
<h5>查询条件</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<select class="custom-select" v-model="feeReceiptManageInfo.conditions.objType">
|
|
<option selected value="">请选择预存类型</option>
|
|
<option value="3333">房屋费</option>
|
|
<option value="6666">车位费</option>
|
|
</select>
|
|
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
<input type="text" placeholder="收费对象" v-model="feeReceiptManageInfo.conditions.roomId"
|
|
class=" form-control" placeholder="请输入房屋或车位信息">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-sm-3">
|
|
<input type="text" v-model="feeReceiptManageInfo.conditions.receiptId" class=" form-control"
|
|
placeholder="请输入收据ID">
|
|
</div>
|
|
<div class="col-sm-2">
|
|
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryFeeReceiptMethod()">
|
|
<i class="glyphicon glyphicon-search"></i> 查询
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<div class="form-group input-group">
|
|
<input type="text" placeholder="请选择开始时间" v-model="feeReceiptManageInfo.conditions.qstartTime"
|
|
class="form-control startTime">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group input-group">
|
|
<input type="text" placeholder="请选择结束时间" v-model="feeReceiptManageInfo.conditions.qendTime"
|
|
class="form-control endTime">
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-3">
|
|
<div class="form-group">
|
|
|
|
<select class="custom-select" v-model="feeReceiptManageInfo.conditions.type">
|
|
<option selected value="">请选择打印类型</option>
|
|
<option value="1">装修单据</option>
|
|
<option value="2">押金单据 </option>
|
|
<option value="3">日常收费 </option>
|
|
<option value="4">车辆单据 </option>
|
|
<option value="5">公摊费票据 </option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-2">
|
|
|
|
</div>
|
|
<div class="col-sm-1">
|
|
<button type="button" class="btn btn-primary btn-sm"
|
|
v-on:click="_printFeeReceipts(feeReceiptManageInfo.conditions)">
|
|
<i class="glyphicon glyphicon-search"></i> 打印
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<div class="ibox">
|
|
<div class="ibox-title">
|
|
<h5>收据信息</h5>
|
|
<div class="ibox-tools" style="top:10px;">
|
|
|
|
</div>
|
|
</div>
|
|
<div class="ibox-content">
|
|
|
|
<table class="footable table table-stripped toggle-arrow-tiny" data-page-size="15">
|
|
<thead>
|
|
<tr>
|
|
<th class="text-center">费用类型</th>
|
|
<th class="text-center">收费对象</th>
|
|
<th class="text-center">总金额</th>
|
|
<th class="text-center">缴费时间</th>
|
|
<th class="text-center">收据ID</th>
|
|
<th class="text-center">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr v-for="feeReceipt in feeReceiptManageInfo.feeReceipts">
|
|
<td class="text-center">{{feeReceipt.objType == '3333'? '房屋费':'车位费'}}</td>
|
|
<td class="text-center">{{feeReceipt.objName}}</td>
|
|
<td class="text-center">{{feeReceipt.amount}}</td>
|
|
<td class="text-center">{{feeReceipt.createTime}}</td>
|
|
<td class="text-center">{{feeReceipt.receiptId}}</td>
|
|
<td class="text-center">
|
|
<div class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_printFeeReceipt(feeReceipt)">补打收据</button>
|
|
</div>
|
|
<!-- <div v-if="feeReceipt.objType == '6666'" class="btn-group">
|
|
<button class="btn-white btn btn-xs"
|
|
v-on:click="_printFeeReceipt(feeReceipt)">补打收据(车)</button>
|
|
</div> -->
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan="7">
|
|
<ul class="pagination float-right"></ul>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
<!-- 分页 -->
|
|
<vc:create path="frame/pagination"></vc:create>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |