|
@@ -498,6 +498,7 @@ const currentMeterTotalBlur = (row) => {
|
|
|
if (!website.localModel) {
|
|
|
row.currentMeterMoney = (BigNumber(currentMeterTotal).multipliedBy(row.currentPrice)).toFixed(2).toString()
|
|
|
} else {
|
|
|
+ //甬台温,不要小数
|
|
|
row.currentMeterMoney = (BigNumber(currentMeterTotal).multipliedBy(row.currentPrice)).toFixed(0).toString()
|
|
|
}
|
|
|
//计算是否相等
|
|
@@ -590,6 +591,7 @@ const unPayRatioBlur = (row)=>{
|
|
|
if (!website.localModel) {
|
|
|
row.currentMeterMoney = (BigNumber(row.currentMeterTotal).multipliedBy(row.currentPrice)).toFixed(2).toString()
|
|
|
} else {
|
|
|
+ //甬台温,不要小数
|
|
|
row.currentMeterMoney = (BigNumber(row.currentMeterTotal).multipliedBy(row.currentPrice)).toFixed(0).toString()
|
|
|
}
|
|
|
|