其他分享
首页 > 其他分享> > elementUI el-input 调整数据但是前端界面不刷新

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])
    },
    toFixed(num, s) {
      var times = Math.pow(10, s)
      var des = num * times + 0.5
      des = parseInt(des, 10) / times
      return des + ''
    }

 

标签:el,bill,stepAndBills,index,elementUI,toFixed,input,des,赋值
来源: https://www.cnblogs.com/tseaki/p/16197890.html