elementUI el-input 调整数据但是前端界面不刷新
在表格行中提供一个输入框,允许用户输入,并且可以进行简单的四则计算,计算在onblur或者回车触发。
<el-input v-model="scope.row[scope.column.label]" @focus="fInputFocus(scope.$index, scope.column.label)" :ref="scope.$index + '|' + scope.column.label" :disabled="isReadonly" @blur="OnBlur(t, table, scope.$index, scope.column.label)" @keyup.enter.native="$event.target.blur" > </el-input>
但是把运算结果赋值之后,界面数据一直不刷新,控制台log出来的数据是已经更改成功了的。
解决方法:使用this.$set重新赋值强制刷新视图,但是不能就这么赋值这个值,需要重新赋值行或者整个表数据, 因为我这个的表格结构不是寻常的行结构,所以我直接重新赋值整表数据了,界面成功显示运算结果
OnBlur(t, table, index, bill) { let value = this.stepAndBills[t].bills[index][bill] // eval 由于JS的计算特性,会有精度问题,此处使用四舍五入修复 this.stepAndBills[t].bills[index][bill] = this.toFixed(eval(value), 4) // 单独赋值某个值不会触发,因为el-table监听的是一整行数据,并不是某一个单元格。所以直接重新赋值整个对象 //this.$set(this.stepAndBills[t].bills[index], `${bill}`, this.toFixed(eval(value), 4)) // 强制刷新视图 this.$set(this.stepAndBills, t, this.stepAndBills[t]) }