MicroCommunityWeb/public/pages/property/listOweFee/listOweFee.html
2022-04-26 19:22:36 +08:00

206 lines
12 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div>
<div class="row">
<div class="col-lg-12">
<div class="ibox ">
<div class="ibox-title">
<h5>
<span><vc:i18n name="查询条件" namespace="listOweFee"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group input-group">
<input type="text" :placeholder="vc.i18n('请选择楼栋','listOweFee')" v-model="listOweFeeInfo.conditions.floorName" class=" form-control">
<div class="input-group-prepend">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openChooseFloorMethod()">
<i class="fa fa-search"></i> <span><vc:i18n name="选择" namespace="listOweFee"></vc:i18n></span>
</button>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="form-control-md form-control input-s-sm inline" v-model="listOweFeeInfo.conditions.unitId">
<option selected value="">{{vc.i18n('请选择单元','listOweFee')}}</option>
<option v-for="(unit,index) in listOweFeeInfo.roomUnits" :key="index"
v-bind:value="unit.unitId">
{{unit.unitNum}}{{vc.i18n('单元','listOweFee')}}
</option>
</select>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写房屋编号','listOweFee')" class="form-control form-control-md" v-model="listOweFeeInfo.conditions.roomNum">
</div>
</div>
<div class="col-sm-2">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryOweFeeMethod()">
<i class="fa fa-search"></i> <span><vc:i18n name="查询" namespace="listOweFee"></vc:i18n></span>
</button>
<button type="button" class="btn btn-white btn-sm" v-on:click="_resetOweFeeMethod()">
<i class="fa fa-repeat"></i> <span><vc:i18n name="重置" namespace="listOweFee"></vc:i18n></span>
</button>
</div>
</div>
<div class="row">
<div class="col-sm-4">
<div class="form-group input-group">
<select class="form-control-md form-control input-s-sm inline" v-model="listOweFeeInfo.conditions.roomSubType">
<option selected value="">{{vc.i18n('请选择房屋类型','listOweFee')}}</option>
<option :value="item.statusCd" v-for="(item,index) in listOweFeeInfo.roomSubTypes">{{item.name}}</option>
</select>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写业主名称','listOweFee')" class="form-control form-control-md" v-model="listOweFeeInfo.conditions.ownerName">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="custom-select" v-model="listOweFeeInfo.conditions.payObjType">
<option selected value="">{{vc.i18n('请选择付费对象类型','listOweFee')}}</option>
<option v-for="(item,index) in listOweFeeInfo.payObjTypes" :key="index"
:value="item.statusCd">
{{item.name}}
</option>
</select>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-4" v-if="listOweFeeInfo.conditions.payObjType == '3333'">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写房屋编号,如1-1-1123','listOweFee')" class="form-control" v-model="listOweFeeInfo.conditions.num">
</div>
</div>
<div class="col-sm-4" v-else-if="listOweFeeInfo.conditions.payObjType == '6666'">
<div class="form-group">
<input type="text" :placeholder="vc.i18n('请填写车位编号如6-8','listOweFee')" class="form-control " v-model="listOweFeeInfo.conditions.num">
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="selectpicker" id="configIds" :placeholder="vc.i18n('请选择收费项','listOweFee')" multiple>
<option v-for="(item,index) in listOweFeeInfo.feeConfigs" :key="index"
:value="item.configId">
{{item.feeName}}
</option>
</select>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="ibox">
<div class="ibox-title">
<h5>
<span><vc:i18n name="欠费清单" namespace="listOweFee"></vc:i18n></span>
</h5>
<div class="ibox-tools" style="top:10px;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_toFeeCollectionOrderManage()">
催缴记录
</button>
<button type="button" class="btn btn-primary btn-sm" v-on:click="_exportFee()">
<i class="fa fa-plus"></i><span><vc:i18n name="导出" namespace="listOweFee"></vc:i18n></span>
</button>
</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">
<span><vc:i18n name="序号" namespace="listOweFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="收费对象" namespace="listOweFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="业主名称" namespace="listOweFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="开始时间" namespace="listOweFee"></vc:i18n></span>
</th>
<th class="text-center">
<span><vc:i18n name="结束时间" namespace="listOweFee"></vc:i18n></span>
</th>
<!-- <th class="text-center"><span><vc:i18n name="面积" namespace="listOweFee"></vc:i18n></span></th> -->
<th class="text-center" v-for="(item,index) in listOweFeeInfo.feeConfigNames">
{{item.configName}}
</th>
<th class="text-center">
<span><vc:i18n name="合计" namespace="listOweFee"></vc:i18n></span>(单位:元)</th>
<th class="text-center">
<span><vc:i18n name="更新时间" namespace="listOweFee"></vc:i18n></span>
</th>
</tr>
</thead>
<tbody>
<tr v-for="(fee,i) in listOweFeeInfo.fees">
<td class="text-center">{{i+1}}</td>
<td class="text-center">{{fee.payerObjName}}</td>
<td class="text-center">{{fee.ownerName}}</td>
<td class="text-center">{{fee.endTime}}</td>
<td class="text-center">{{fee.deadlineTime}}</td>
<td class="text-center" v-for="item in listOweFeeInfo.feeConfigNames">
{{_getFeeOweAmount(item,fee)}}
</td>
<td class="text-center">{{_getAllFeeOweAmount(fee)}}</td>
<td class="text-center">{{fee.updateTime}}</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="7">
<ul class="pagination float-right"></ul>
</td>
</tr>
</tfoot>
</table>
<!-- 分页 -->
<div class="row">
<span class="col-md-1 margin-left">
<div class="row"><b><span><vc:i18n name="小计" namespace="listOweFee"></vc:i18n></span></b></div>
</span>
<span class="col-md-2" v-for="(item,index) in listOweFeeInfo.feeConfigNames">
<div>{{item.configName}}: {{_getFeeOweAllAmount(item)}}<span><vc:i18n name="元" namespace="listOweFee"></vc:i18n></span></div>
</span>
<span class="col-md-2">
<div><span><vc:i18n name="合计" namespace="listOweFee"></vc:i18n></span>: {{_getFeeOweAllAmounts()}}<span><vc:i18n name="元" namespace="listOweFee"></vc:i18n></span></div>
</span>
</div>
<div class="row" v-if="listOweFeeInfo.fees && listOweFeeInfo.fees.length>0">
<span class="col-md-1 margin-left">
<div class="row"><b><span><vc:i18n name="大计" namespace="listOweFee"></vc:i18n></span></b></div>
</span>
<span class="col-md-2" v-for="(item,index) in listOweFeeInfo.feeConfigNames">
<div>{{item.configName}}: {{_getFeeOweAllTotalAmount(item)}}<span><vc:i18n name="元" namespace="listOweFee"></vc:i18n></span></div>
</span>
<span class="col-md-2">
<div><span><vc:i18n name="合计" namespace="listOweFee"></vc:i18n></span>: {{listOweFeeInfo.fees[0].totalOweAmount}}<span><vc:i18n name="元" namespace="listOweFee"></vc:i18n></span></div>
</span>
</div>
<div class="row">
<div class="col-md-12 text-center">
<vc:create path="frame/pagination"></vc:create>
</div>
</div>
</div>
</div>
</div>
</div>
<vc:create path="property/searchFloor" emitChooseFloor="listOweFee" emitLoadData="xx"></vc:create>
</div>