mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-02-24 05:46:03 +08:00
228 lines
11 KiB
JavaScript
Executable File
228 lines
11 KiB
JavaScript
Executable File
/**
|
|
入驻小区
|
|
**/
|
|
(function (vc) {
|
|
var DEFAULT_PAGE = 1;
|
|
var DEFAULT_ROWS = 10;
|
|
vc.extends({
|
|
data: {
|
|
reportFeeDetailInfo: {
|
|
fees: [],
|
|
total: 0,
|
|
records: 1,
|
|
moreCondition: false,
|
|
title: '',
|
|
totalReceivableAmount: 0.0,
|
|
totalReceivedAmount: 0.0,
|
|
allReceivableAmount: 0.0,
|
|
allReceivedAmount: 0.0,
|
|
primeRates: [],
|
|
roomUnits: [],
|
|
feeConfigDtos: [],
|
|
conditions: {
|
|
floorId: '',
|
|
floorName: '',
|
|
configId: '',
|
|
feeName: '',
|
|
roomNum: '',
|
|
unitId: '',
|
|
startTime: '',
|
|
endTime: ''
|
|
}
|
|
}
|
|
},
|
|
_initMethod: function () {
|
|
vc.component._initDate();
|
|
vc.component._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
// vc.initDateMonth('startTime', function (_startTime) {
|
|
// $that.reportFeeDetailInfo.conditions.startTime = _startTime;
|
|
// });
|
|
|
|
// vc.initDateMonth('endTime', function (_endTime) {
|
|
// $that.reportFeeDetailInfo.conditions.endTime = _endTime;
|
|
// let start = Date.parse(new Date($that.reportFeeDetailInfo.conditions.startTime + "-01"))
|
|
// let end = Date.parse(new Date($that.reportFeeDetailInfo.conditions.endTime + "-01"))
|
|
// if (start - end >= 0) {
|
|
// vc.toast("结束时间必须大于开始时间")
|
|
// $that.reportFeeDetailInfo.conditions.endTime = '';
|
|
// }
|
|
// });
|
|
},
|
|
_initEvent: function () {
|
|
vc.on('reportFeeDetail', 'chooseFloor', function (_param) {
|
|
vc.component.reportFeeDetailInfo.conditions.floorId = _param.floorId;
|
|
vc.component.reportFeeDetailInfo.conditions.floorName = _param.floorName;
|
|
vc.component.loadUnits(_param.floorId);
|
|
});
|
|
vc.on('pagination', 'page_event', function (_currentPage) {
|
|
vc.component._listFees(_currentPage, DEFAULT_ROWS);
|
|
});
|
|
},
|
|
methods: {
|
|
_initDate: function () {
|
|
$(".startTime").datetimepicker({
|
|
minView: "month",
|
|
language: 'zh-CN',
|
|
fontAwesome: 'fa',
|
|
format: 'yyyy-mm-dd',
|
|
initTime: true,
|
|
initialDate: new Date(),
|
|
autoClose: 1,
|
|
todayBtn: true
|
|
});
|
|
$(".endTime").datetimepicker({
|
|
minView: "month",
|
|
language: 'zh-CN',
|
|
fontAwesome: 'fa',
|
|
format: 'yyyy-mm-dd',
|
|
initTime: true,
|
|
initialDate: new Date(),
|
|
autoClose: 1,
|
|
todayBtn: true
|
|
});
|
|
$('.startTime').datetimepicker()
|
|
.on('changeDate', function (ev) {
|
|
var value = $(".startTime").val();
|
|
vc.component.reportFeeDetailInfo.conditions.startTime = value;
|
|
});
|
|
$('.endTime').datetimepicker()
|
|
.on('changeDate', function (ev) {
|
|
var value = $(".endTime").val();
|
|
vc.component.reportFeeDetailInfo.conditions.endTime = value;
|
|
let start = Date.parse(new Date($that.reportFeeDetailInfo.conditions.startTime))
|
|
let end = Date.parse(new Date($that.reportFeeDetailInfo.conditions.endTime))
|
|
if (start - end >= 0) {
|
|
vc.toast("结束时间必须大于开始时间")
|
|
$that.reportFeeDetailInfo.conditions.endTime = '';
|
|
}
|
|
});
|
|
},
|
|
_queryMethod:function(){
|
|
vc.component._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
//查询方法
|
|
_listFees: function (_page, _rows) {
|
|
vc.component.reportFeeDetailInfo.conditions.page = _page;
|
|
vc.component.reportFeeDetailInfo.conditions.row = _rows;
|
|
vc.component.reportFeeDetailInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
|
|
var param = {
|
|
params: vc.component.reportFeeDetailInfo.conditions
|
|
};
|
|
//发送get请求
|
|
vc.http.apiGet('/reportFeeMonthStatistics/queryFeeDetail',
|
|
param,
|
|
function (json, res) {
|
|
var _reportFeeDetailInfo = JSON.parse(json);
|
|
vc.component.reportFeeDetailInfo.total = _reportFeeDetailInfo.total;
|
|
vc.component.reportFeeDetailInfo.records = _reportFeeDetailInfo.records;
|
|
vc.component.reportFeeDetailInfo.fees = _reportFeeDetailInfo.data;
|
|
if (_reportFeeDetailInfo.data.length > 0) {
|
|
vc.component.reportFeeDetailInfo.totalReceivableAmount = _reportFeeDetailInfo.data[0].totalReceivableAmount;
|
|
vc.component.reportFeeDetailInfo.allReceivableAmount = _reportFeeDetailInfo.data[0].allReceivableAmount;
|
|
vc.component.reportFeeDetailInfo.totalReceivedAmount = _reportFeeDetailInfo.data[0].totalReceivedAmount;
|
|
vc.component.reportFeeDetailInfo.allReceivedAmount = _reportFeeDetailInfo.data[0].allReceivedAmount;
|
|
vc.component.reportFeeDetailInfo.feeConfigDtos = _reportFeeDetailInfo.data[0].feeConfigDtos;
|
|
} else {
|
|
vc.component.reportFeeDetailInfo.totalReceivableAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.totalReceivedAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.allReceivableAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.allReceivedAmount = 0.0;
|
|
}
|
|
vc.emit('pagination', 'init', {
|
|
total: vc.component.reportFeeDetailInfo.records,
|
|
currentPage: _page
|
|
});
|
|
}, function (errInfo, error) {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
//重置
|
|
_resetMethod: function () {
|
|
vc.component._resetListFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
//重置方法
|
|
_resetListFees: function (_page, _rows) {
|
|
vc.component.reportFeeDetailInfo.conditions.floorName = '';
|
|
vc.component.reportFeeDetailInfo.conditions.floorId = '';
|
|
vc.component.reportFeeDetailInfo.conditions.unitId = '';
|
|
vc.component.reportFeeDetailInfo.conditions.roomNum = '';
|
|
vc.component.reportFeeDetailInfo.conditions.startTime = '';
|
|
vc.component.reportFeeDetailInfo.conditions.endTime = '';
|
|
vc.component.reportFeeDetailInfo.conditions.configId = '';
|
|
// 清除下拉框选项
|
|
vc.component.reportFeeDetailInfo.roomUnits = [];
|
|
var param = {
|
|
params: vc.component.reportFeeDetailInfo.conditions
|
|
};
|
|
//发送get请求
|
|
vc.http.apiGet('/reportFeeMonthStatistics/queryFeeDetail',
|
|
param,
|
|
function (json, res) {
|
|
var _reportFeeDetailInfo = JSON.parse(json);
|
|
vc.component.reportFeeDetailInfo.total = _reportFeeDetailInfo.total;
|
|
vc.component.reportFeeDetailInfo.records = _reportFeeDetailInfo.records;
|
|
vc.component.reportFeeDetailInfo.fees = _reportFeeDetailInfo.data;
|
|
if (_reportFeeDetailInfo.data.length > 0) {
|
|
vc.component.reportFeeDetailInfo.totalReceivableAmount = _reportFeeDetailInfo.data[0].totalReceivableAmount;
|
|
vc.component.reportFeeDetailInfo.allReceivableAmount = _reportFeeDetailInfo.data[0].allReceivableAmount;
|
|
vc.component.reportFeeDetailInfo.totalReceivedAmount = _reportFeeDetailInfo.data[0].totalReceivedAmount;
|
|
vc.component.reportFeeDetailInfo.allReceivedAmount = _reportFeeDetailInfo.data[0].allReceivedAmount;
|
|
vc.component.reportFeeDetailInfo.feeConfigDtos = _reportFeeDetailInfo.data[0].feeConfigDtos;
|
|
} else {
|
|
vc.component.reportFeeDetailInfo.totalReceivableAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.totalReceivedAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.allReceivableAmount = 0.0;
|
|
vc.component.reportFeeDetailInfo.allReceivedAmount = 0.0;
|
|
}
|
|
vc.emit('pagination', 'init', {
|
|
total: vc.component.reportFeeDetailInfo.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.reportFeeDetailInfo.roomUnits = tmpUnits;
|
|
return;
|
|
}
|
|
vc.toast(json);
|
|
},
|
|
function (errInfo, error) {
|
|
console.log('请求失败处理');
|
|
vc.toast(errInfo);
|
|
});
|
|
},
|
|
_openChooseFloorMethod: function () {
|
|
vc.emit('searchFloor', 'openSearchFloorModel', {});
|
|
},
|
|
_moreCondition: function () {
|
|
if (vc.component.reportFeeDetailInfo.moreCondition) {
|
|
vc.component.reportFeeDetailInfo.moreCondition = false;
|
|
} else {
|
|
vc.component.reportFeeDetailInfo.moreCondition = true;
|
|
}
|
|
},
|
|
_exportFee: function () {
|
|
vc.jumpToPage('/callComponent/exportReportFee/exportData?communityId=' + vc.getCurrentCommunity().communityId + "&pagePath=reportFeeDetail");
|
|
}
|
|
}
|
|
});
|
|
})(window.vc);
|