|
@@ -274,7 +274,7 @@ export default {
|
|
|
handleChange (val, row, column) {
|
|
|
const _this = this
|
|
|
const newColumn = _this.padZero(column)
|
|
|
- row['value' + newColumn] = val
|
|
|
+ row['value' + newColumn] = val || 0
|
|
|
row.summation = _this.calculateTotal(row)
|
|
|
// _this.dataSources[column * 1 - 1] = row
|
|
|
},
|