@@ -227,10 +227,10 @@ export default {
let total = 0
this.dynamicValidateForm.domains.forEach(item => {
if (item.price) {
- total += parseFloat(item.price)
+ total += parseFloat(item.price * 100000)
}
})
- return total
+ return total / 100000
},
methods: {