139 lines
5.6 KiB
JavaScript
139 lines
5.6 KiB
JavaScript
/**
|
|
入驻小区
|
|
**/
|
|
(function (vc) {
|
|
var DEFAULT_PAGE = 1;
|
|
var DEFAULT_ROWS = 10;
|
|
vc.extends({
|
|
data: {
|
|
aCarDetailFeeInfo: {
|
|
fees: [],
|
|
carId: '',
|
|
memberId:'',
|
|
carNum:'',
|
|
}
|
|
},
|
|
_initMethod: function () {
|
|
},
|
|
_initEvent: function () {
|
|
vc.on('aCarDetailFee', 'switch', function (_data) {
|
|
$that.aCarDetailFeeInfo.carId = _data.carId;
|
|
$that.aCarDetailFeeInfo.carNum = _data.carNum;
|
|
$that.aCarDetailFeeInfo.memberId = _data.memberId;
|
|
$that._loadACarDetailFeeData(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
});
|
|
vc.on('aCarDetailFee', 'notify',
|
|
function (_data) {
|
|
$that._loadACarDetailFeeData(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
});
|
|
vc.on('aCarDetailFee', 'paginationPlus', 'page_event',
|
|
function (_currentPage) {
|
|
$that._loadACarDetailFeeData(_currentPage, DEFAULT_ROWS);
|
|
});
|
|
},
|
|
methods: {
|
|
_loadACarDetailFeeData: function (_page, _row) {
|
|
let param = {
|
|
params: {
|
|
payerObjId: $that.aCarDetailFeeInfo.memberId,
|
|
page: _page,
|
|
row: _row
|
|
}
|
|
};
|
|
|
|
//发送get请求
|
|
vc.http.apiGet('/fee.listAdminFee',
|
|
param,
|
|
function (json) {
|
|
let _roomInfo = JSON.parse(json);
|
|
$that.aCarDetailFeeInfo.fees = _roomInfo.fees;
|
|
vc.emit('aCarDetailFee', 'paginationPlus', 'init', {
|
|
total: _roomInfo.records,
|
|
dataCount: _roomInfo.total,
|
|
currentPage: _page
|
|
});
|
|
},
|
|
function () {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
//查询
|
|
_qureyACarDetailFee: function () {
|
|
$that._loadACarDetailFeeData(DEFAULT_PAGE, DEFAULT_ROWS);
|
|
},
|
|
_getDeadlineTime: function (_fee) {
|
|
if (_fee.amountOwed == 0 && _fee.endTime == _fee.deadlineTime) {
|
|
return "-";
|
|
}
|
|
if (_fee.state == '2009001') {
|
|
return "-";
|
|
}
|
|
return _fee.deadlineTime;
|
|
},
|
|
_getEndTime: function (_fee) {
|
|
if (_fee.state == '2009001') {
|
|
return "-";
|
|
}
|
|
return _fee.endTime;
|
|
},
|
|
_viewCarFeeConfig: function (_fee) {
|
|
let param = {
|
|
params: {
|
|
page: 1,
|
|
row: 1,
|
|
communityId: vc.getCurrentCommunity().communityId,
|
|
configId: _fee.configId
|
|
}
|
|
};
|
|
//发送get请求
|
|
vc.http.apiGet('/feeConfig.listFeeConfigs', param,
|
|
function (json, res) {
|
|
let _feeConfigManageInfo = JSON.parse(json);
|
|
let _feeConfig = _feeConfigManageInfo.feeConfigs[0];
|
|
vc.emit('viewData', 'openViewDataModal', {
|
|
title: _fee.feeName,
|
|
data: {
|
|
"费用项ID": _feeConfig.configId,
|
|
"费用类型": _feeConfig.feeTypeCdName,
|
|
"收费项目": _feeConfig.feeName,
|
|
"费用标识": _feeConfig.feeFlagName,
|
|
"催缴类型": _feeConfig.billTypeName,
|
|
"付费类型": _feeConfig.paymentCd == '1200' ? '预付费' : '后付费',
|
|
"缴费周期": _feeConfig.paymentCycle,
|
|
"计费起始时间": _feeConfig.startTime,
|
|
"计费终止时间": _feeConfig.endTime,
|
|
"公式": _feeConfig.computingFormulaName,
|
|
"计费单价": _feeConfig.computingFormula == '2002' ? '-' : _feeConfig.squarePrice,
|
|
"附加/固定费用": _feeConfig.additionalAmount,
|
|
}
|
|
})
|
|
},
|
|
function (errInfo, error) {
|
|
console.log('请求失败处理');
|
|
}
|
|
);
|
|
},
|
|
_viewCarFee: function (_fee) {
|
|
let _data = {
|
|
"费用ID": _fee.feeId,
|
|
"费用标识": _fee.feeFlagName,
|
|
"费用类型": _fee.feeTypeCdName,
|
|
"费用项": _fee.feeName,
|
|
"费用状态": _fee.stateName,
|
|
"建账时间": _fee.startTime,
|
|
"计费开始时间": $that._getEndTime(_fee),
|
|
"计费结束时间": $that._getDeadlineTime(_fee),
|
|
"批次": _fee.batchId,
|
|
};
|
|
_fee.feeAttrs.forEach(attr => {
|
|
_data[attr.specCdName] = attr.value;
|
|
})
|
|
vc.emit('viewData', 'openViewDataModal', {
|
|
title: _fee.feeName + " 详情",
|
|
data: _data
|
|
});
|
|
}
|
|
}
|
|
});
|
|
})(window.vc); |