加入费用汇总表

This commit is contained in:
java110 2020-10-16 17:37:56 +08:00
parent 866bc60231
commit 8deb9e8103
2 changed files with 203 additions and 0 deletions

View File

@ -0,0 +1,106 @@
<div class=" animated fadeInRight ecommerce">
<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()">{{reportFeeSummaryInfo.moreCondition == true?'隐藏':'更多'}}
</button>
</div>
</div>
<div class="ibox-content">
<div class="row">
<div class="col-sm-4">
<div class="form-group input-group">
<input type="text" placeholder="请选择楼栋" v-model="reportFeeSummaryInfo.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> 选择
</button>
</div>
</div>
</div>
<div class="col-sm-3">
<div class="form-group">
<select class="form-control-sm form-control input-s-sm inline"
v-model="reportFeeSummaryInfo.conditions.unitId">
<option selected value="">请选择单元</option>
<option v-for="(unit,index) in reportFeeSummaryInfo.roomUnits" :key="index" v-bind:value="unit.unitId">
{{unit.unitNum}}单元
</option>
</select>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<input type="text" placeholder="请填写房屋编号" class="form-control form-control-sm"
v-model="reportFeeSummaryInfo.conditions.roomNum">
</div>
</div>
<div class="col-sm-1">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_queryRoomMethod()"><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;">
<button type="button" class="btn btn-primary btn-sm" v-on:click="_openAddActivitiesModal()">
<i class="fa fa-plus"></i>
导出
</button>
</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">信息ID</th> -->
<th class="text-center">日期</th>
<th class="text-center">应收金额</th>
<th class="text-center">实收金额</th>
<th class="text-center">欠费金额</th>
</tr>
</thead>
<tbody>
<tr v-for="fee in reportFeeSummaryInfo.fees">
<td class="text-center">{{fee.feeDate}}</td>
<td class="text-center">{{fee.receivableAmount}}</td>
<td class="text-center">{{fee.receivedAmount}}</td>
<td class="text-center">{{fee.oweAmount}}</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>
<vc:create path="property/searchFloor" emitChooseFloor="reportFeeSummary" emitLoadData="xx"></vc:create>
</div>

View File

@ -0,0 +1,97 @@
/**
入驻小区
**/
(function (vc) {
var DEFAULT_PAGE = 1;
var DEFAULT_ROWS = 10;
vc.extends({
data: {
reportFeeSummaryInfo: {
fees: [],
total: 0,
records: 1,
moreCondition: false,
title: '',
roomUnits: [],
conditions: {
floorId: '',
floorName: '',
roomNum: '',
unitId: '',
startTime:'',
endTime:''
}
}
},
_initMethod: function () {
vc.component._listActivitiess(DEFAULT_PAGE, DEFAULT_ROWS);
},
_initEvent: function () {
vc.on('reportFeeSummary', 'chooseFloor', function (_param) {
vc.component.reportFeeSummaryInfo.conditions.floorId = _param.floorId;
vc.component.reportFeeSummaryInfo.conditions.floorName = _param.floorName;
vc.component.loadUnits(_param.floorId);
});
vc.on('pagination', 'page_event', function (_currentPage) {
vc.component._listActivitiess(_currentPage, DEFAULT_ROWS);
});
},
methods: {
_listActivitiess: function (_page, _rows) {
vc.component.reportFeeSummaryInfo.conditions.page = _page;
vc.component.reportFeeSummaryInfo.conditions.row = _rows;
vc.component.reportFeeSummaryInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
var param = {
params: vc.component.reportFeeSummaryInfo.conditions
};
//发送get请求
vc.http.get('reportFeeSummary',
'list',
param,
function (json, res) {
var _reportFeeSummaryInfo = JSON.parse(json);
vc.component.reportFeeSummaryInfo.total = _reportFeeSummaryInfo.total;
vc.component.reportFeeSummaryInfo.records = _reportFeeSummaryInfo.records;
vc.component.reportFeeSummaryInfo.activitiess = _reportFeeSummaryInfo.activitiess;
vc.emit('pagination', 'init', {
total: vc.component.reportFeeSummaryInfo.records,
currentPage: _page
});
}, function (errInfo, error) {
console.log('请求失败处理');
}
);
},
loadUnits: function (_floorId) {
var param = {
params: {
floorId: _floorId,
communityId: vc.getCurrentCommunity().communityId
}
}
vc.http.get(
'room',
'loadUnits',
param,
function (json, res) {
//vm.menus = vm.refreshMenuActive(JSON.parse(json),0);
if (res.status == 200) {
let tmpUnits = JSON.parse(json);
vc.component.reportFeeSummaryInfo.roomUnits = tmpUnits;
return;
}
vc.toast(json);
},
function (errInfo, error) {
console.log('请求失败处理');
vc.toast(errInfo);
});
},
}
});
})(window.vc);