当前位置: 代码迷 >> 综合 >> elementUI toggleRowSelection设置无效
  详细解决方案

elementUI toggleRowSelection设置无效

热度:32   发布时间:2023-11-19 18:36:42.0
        // 初始化禁选的复选框checkboxInit(row, index) {var that = this;that.$nextTick(() => {console.log(that.$refs.multipleTableGood);if (that.$refs.multipleTableGood) {that.$refs.multipleTableGood.clearSelection();}that.tableData.forEach(row => {for (let j in that.selectData) {if (row.id == that.selectData[j].id) {console.log("相同");that.$refs.multipleTableGood.toggleRowSelection(row,true);}}});});},

$nextTick解决

  相关解决方案