|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
let smallCount = this.customData.smallCount;
|
|
|
let bigCount = this.customData.bigCount;
|
|
|
let weight = this.customData.weight;
|
|
|
- this.customData.realityWeight = smallCount * weight / ratio + bigCount * weight
|
|
|
+ this.customData.realityWeight = (smallCount * weight / ratio + bigCount * weight).toFixed(2)
|
|
|
},
|
|
|
// 离开全选input
|
|
|
moveAllInput(e){
|