C#中对象循环forEach
this.tableData.forEach((e)=>{
console.log(e.CAPAStatus);
if (e.CAPAStatus == 1)
this.showButton=true;
else
this.showButton = false;
})
button直接属性直接用el-button
:disabled="scope.row.CAPAStatus != 1"