vue表格数据编辑element-ui

  • tableData赋值后不可编辑,没有 s e t 、 set、 setget属性,但是值有变化
  • 要在赋值的数值上操作

this.$set(list[s], 'orderquantity', JSON.parse(JSON.stringify(1)))
    this.$set(list[s], 'totalPackage', JSON.parse(JSON.stringify(list[s].boxNumber * 1)))
    this.$set(list[s], 'totalWeight', JSON.parse(JSON.stringify(list[s].roughWeight * 1)))
    this.$set(list[s], 'totalPirce', JSON.parse(JSON.stringify(list[s].boxNumber *list[s].outPrice * 1)))

你可能感兴趣的:(vue表格数据编辑element-ui)