优化综合缴费bug

This commit is contained in:
java110 2022-04-13 12:12:51 +08:00
parent 83fdbcad96
commit 23a487a9b1
2 changed files with 6 additions and 0 deletions

View File

@ -126,6 +126,9 @@
_that.receivableAmount = _that.receivableAmount.toFixed(2); _that.receivableAmount = _that.receivableAmount.toFixed(2);
}) })
}, },
onPayFee:function(){
payOweFee(this);
}
} }
}; };
</script> </script>

View File

@ -139,6 +139,9 @@
_room.feePrice = parseFloat(_room.feePrice) + parseFloat(_fee.feePrice) _room.feePrice = parseFloat(_room.feePrice) + parseFloat(_fee.feePrice)
_room.feePrice = _room.feePrice.toFixed(2) _room.feePrice = _room.feePrice.toFixed(2)
},
onPayFee:function(){
payOweFee(this);
} }
} }
}; };