// 初始化禁选的复选框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解决