mirror of
https://gitee.com/java110/MicroCommunityWeb.git
synced 2026-06-12 10:00:56 +08:00
173 lines
7.1 KiB
JavaScript
Executable File
173 lines
7.1 KiB
JavaScript
Executable File
/**
|
|
入驻小区
|
|
**/
|
|
(function(vc) {
|
|
var DEFAULT_PAGE = 1;
|
|
var DEFAULT_ROWS = 10;
|
|
vc.extends({
|
|
data: {
|
|
reportFeeSummaryInfo: {
|
|
fees: [],
|
|
feeConfigs: [],
|
|
floors: [],
|
|
configIds: [],
|
|
feeTypeCds: [],
|
|
total: 0,
|
|
records: 1,
|
|
moreCondition: false,
|
|
conditions: {
|
|
floorId: '',
|
|
roomNum: '',
|
|
startDate: '',
|
|
endDate: '',
|
|
configId: '',
|
|
feeTypeCd: '',
|
|
ownerName: '',
|
|
link: '',
|
|
communityId: vc.getCurrentCommunity().communityId
|
|
}
|
|
}
|
|
},
|
|
_initMethod: function() {
|
|
$that._initDate();
|
|
$that._listFeeConfigs();
|
|
vc.getDict('pay_fee_config', "fee_type_cd", function(_data) {
|
|
$that.reportFeeSummaryInfo.feeTypeCds = _data
|
|
});
|
|
$that._listFloors();
|
|
$that._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
_initEvent: function() {},
|
|
methods: {
|
|
_initDate: function() {
|
|
vc.initDate('startDate', function(_value) {
|
|
$that.reportFeeSummaryInfo.conditions.startDate = _value;
|
|
});
|
|
vc.initDate('endDate', function(_value) {
|
|
$that.reportFeeSummaryInfo.conditions.endDate = _value;
|
|
});
|
|
let _data = new Date();
|
|
let _month = _data.getMonth() + 1;
|
|
let _newDate = "";
|
|
if (_month < 10) {
|
|
_newDate = _data.getFullYear() + "-0" + _month + "-01";
|
|
} else {
|
|
_newDate = _data.getFullYear() + "-" + _month + "-01";
|
|
}
|
|
$that.reportFeeSummaryInfo.conditions.startDate = _newDate;
|
|
_data.setMonth(_data.getMonth() + 1);
|
|
_month = _data.getMonth() + 1;
|
|
if (_month < 10) {
|
|
_newDate = _data.getFullYear() + "-0" + _month + "-01";
|
|
} else {
|
|
_newDate = _data.getFullYear() + "-" + _month + "-01";
|
|
}
|
|
$that.reportFeeSummaryInfo.conditions.endDate = _newDate;
|
|
},
|
|
//查询
|
|
_queryMethod: function() {
|
|
$that._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
swatchFloor: function(_floorId) {
|
|
$that.reportFeeSummaryInfo.conditions.floorId = _floorId;
|
|
$that._listFees(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
|
|
},
|
|
//查询方法
|
|
_listFees: function(_page, _rows) {
|
|
$that.reportFeeSummaryInfo.conditions.page = _page;
|
|
$that.reportFeeSummaryInfo.conditions.row = _rows;
|
|
$that.reportFeeSummaryInfo.conditions.communityId = vc.getCurrentCommunity().communityId;
|
|
let param = {
|
|
params: $that.reportFeeSummaryInfo.conditions
|
|
};
|
|
param.params.roomNum = param.params.roomNum.trim();
|
|
param.params.ownerName = param.params.ownerName.trim();
|
|
param.params.link = param.params.link.trim();
|
|
|
|
if ($that.reportFeeSummaryInfo.configIds.length > 0) {
|
|
param.params.configIds = $that.reportFeeSummaryInfo.configIds.join(',');
|
|
}
|
|
|
|
//发送get请求
|
|
vc.http.apiGet('/reportFeeMonthStatistics.queryReportFeeSummary',
|
|
param,
|
|
function(json, res) {
|
|
let _reportFeeSummaryInfo = JSON.parse(json);
|
|
|
|
$that.reportFeeSummaryInfo.fees = _reportFeeSummaryInfo.data;
|
|
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
//楼栋收费率
|
|
vc.emit('floorFeeSummary', 'notify', param.params);
|
|
vc.emit('configFeeSummary', 'notify', param.params);
|
|
|
|
},
|
|
_moreCondition: function() {
|
|
if ($that.reportFeeSummaryInfo.moreCondition) {
|
|
$that.reportFeeSummaryInfo.moreCondition = false;
|
|
} else {
|
|
$that.reportFeeSummaryInfo.moreCondition = true;
|
|
}
|
|
},
|
|
_listFeeConfigs: function() {
|
|
let param = {
|
|
params: {
|
|
page: 1,
|
|
row: 100,
|
|
communityId: vc.getCurrentCommunity().communityId,
|
|
isDefault: 'F'
|
|
}
|
|
};
|
|
//发送get请求
|
|
vc.http.apiGet('/feeConfig.listFeeConfigs', param,
|
|
function(json, res) {
|
|
var _feeConfigManageInfo = JSON.parse(json);
|
|
$that.reportFeeSummaryInfo.feeConfigs = _feeConfigManageInfo.feeConfigs;
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
});
|
|
},
|
|
_listFloors: function() {
|
|
let param = {
|
|
params: {
|
|
page: 1,
|
|
row: 100,
|
|
communityId: vc.getCurrentCommunity().communityId
|
|
}
|
|
};
|
|
//发送get请求
|
|
vc.http.apiGet('/floor.queryFloors', param,
|
|
function(json, res) {
|
|
var _feeConfigManageInfo = JSON.parse(json);
|
|
$that.reportFeeSummaryInfo.floors = _feeConfigManageInfo.apiFloorDataVoList;
|
|
},
|
|
function(errInfo, error) {
|
|
console.log('请求失败处理');
|
|
});
|
|
},
|
|
_exportExcel: function() {
|
|
vc.jumpToPage('/callComponent/exportReportFee/exportData?pagePath=reportFeeSummary&' + vc.objToGetParam($that.reportFeeSummaryInfo.conditions));
|
|
},
|
|
_toDetail: function(_fee) {
|
|
let _configIds = "";
|
|
$that.reportFeeSummaryInfo.feeConfigNames.forEach(item => {
|
|
_configIds += (item.configId + ',')
|
|
})
|
|
if (_configIds.endsWith(',')) {
|
|
_configIds = _configIds.substring(0, _configIds.length - 1);
|
|
}
|
|
vc.jumpToPage('/#/pages/property/reportFeeSummaryDetail?feeYear=' + _fee.feeYear + "&feeMonth=" + _fee.feeMonth + "&configIds=" + _configIds + "&" + vc.objToGetParam($that.reportFeeSummaryInfo.conditions))
|
|
},
|
|
_printFeeSummary: function() {
|
|
let _param = vc.objToGetParam($that.reportFeeSummaryInfo.conditions);
|
|
window.open('/print.html#/pages/property/reportFeeSummaryPrint?' + _param);
|
|
}
|
|
}
|
|
});
|
|
})(window.vc); |