mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
104 lines
5.0 KiB
HTML
104 lines
5.0 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;">
|
||
<button type="button" class="btn btn-link btn-sm" style="margin-right:10px;"
|
||
v-on:click="_moreCondition()">{{listOweFeeInfo.moreCondition == true?'隐藏':'更多'}}
|
||
</button>
|
||
</div>
|
||
</div>
|
||
<div class="ibox-content">
|
||
<div class="row">
|
||
<div class="col-sm-4">
|
||
<div class="form-group">
|
||
<select class="custom-select" v-model="listOweFeeInfo.conditions.payObjType">
|
||
<option value="3333">房屋费用</option>
|
||
<option value="6666">车位费用</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-3">
|
||
<div class="form-group">
|
||
<select class="custom-select" v-model="listOweFeeInfo.conditions.billType">
|
||
<option value="00123">出账费用</option>
|
||
<option value="004">实时费用</option>
|
||
</select>
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-4" v-if="listOweFeeInfo.conditions.payObjType == '3333'">
|
||
<div class="form-group">
|
||
<input type="text" placeholder="请填写房屋编号,如1-1-1123" class="form-control"
|
||
v-model="listOweFeeInfo.conditions.num">
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-4" v-else>
|
||
<div class="form-group">
|
||
<input type="text" placeholder="请填写车位编号,如6-8" class="form-control "
|
||
v-model="listOweFeeInfo.conditions.num">
|
||
</div>
|
||
</div>
|
||
<div class="col-sm-1">
|
||
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryOweFeeMethod()"><i
|
||
class="fa fa-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" style="margin-top:10px"
|
||
data-page-size="10">
|
||
|
||
<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">到期时间</th>
|
||
<th class="text-center">欠费金额</th>
|
||
<th class="text-right">操作</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr v-for="fee in listOweFeeInfo.fees">
|
||
<td class="text-center">{{fee.roomName}}</td>
|
||
<td class="text-center">{{fee.feeName}}</td>
|
||
<td class="text-center">{{fee.ownerName}}</td>
|
||
<td class="text-center">{{fee.ownerTel}}</td>
|
||
<td class="text-center">{{fee.endTime}}</td>
|
||
<td class="text-center">{{fee.amountOwed}}</td>
|
||
<td class="text-right">
|
||
<button class="btn btn-link btn-xs" v-if=" fee.state != '2009001'"
|
||
v-on:click="_toOwnerPayFee(fee)">缴费
|
||
</button>
|
||
</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
<!-- 分页 -->
|
||
<vc:create path="frame/pagination"></vc:create>
|
||
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div> |