From 89a93fb8db40f30449522e32aed9191b75b4fed3 Mon Sep 17 00:00:00 2001 From: java110 <928255095@qq.com> Date: Wed, 16 Jun 2021 00:22:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BC=B4=E8=B4=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/roomFee/roomFee.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pages/roomFee/roomFee.vue b/pages/roomFee/roomFee.vue index 1079d40..081214e 100755 --- a/pages/roomFee/roomFee.vue +++ b/pages/roomFee/roomFee.vue @@ -175,7 +175,8 @@ if(_fee.feeFlag == "2006012"){ // 周期性费用 _receivableAmount = _amount; }else{ // 一次性费用 - _receivableAmount = ((_fee.builtUpArea * _fee.squarePrice + parseFloat(_fee.additionalAmount)) * _fee.paymentCycle).toFixed(2); + //_receivableAmount = ((_fee.builtUpArea * _fee.squarePrice + parseFloat(_fee.additionalAmount)) * _fee.paymentCycle).toFixed(2); + _receivableAmount = (_fee.amount * _fee.paymentCycle).toFixed(2); } let _communityInfo = context.getCurrentCommunity(); let _lastDate = new Date(_fee.endTime); @@ -221,7 +222,7 @@ _feeMonthName = this.feeMonthList[e.detail.value];; let _feeMonth = _feeMonthName.replace("个月",""); // let _receivableAmount = _feeMonth * this.amount; - let _receivableAmount = _feeMonth * (this.builtUpArea * this.squarePrice + parseFloat(this.additionalAmount)); + let _receivableAmount = _feeMonth * this.amount; let _lastDate = new Date(this.ordEndTime); let _newDate = addMonth(_lastDate, parseInt(_feeMonth)); this.showFeeMonth = false;