|
|
@@ -87,7 +87,8 @@ export default {
|
|
|
for (const item of this.selectList) {
|
|
|
bigLength += Number(item.bigCount)
|
|
|
smallLength += Number(item.smallCount)
|
|
|
- let currentWeight = item.weight ? item.weight : 0
|
|
|
+ let thisWeight = item.weight ? item.weight : 0
|
|
|
+ let currentWeight = Number(thisWeight)*Number(item.bigCount)
|
|
|
weight = Number(weight) + Number(currentWeight)
|
|
|
}
|
|
|
weight = weight.toFixed(2)
|