<el-table
stripe
style="width: 100%"
class="mytable"
:data="sxjtabledata"
ref="table"
@row-click="handleRowClick"
>
<el-table-column type="selection" width="60"> </el-table-column>
<el-table-column prop="DevOsd" label="摄像机"> </el-table-column>
</el-table>
handleRowClick(row) {
row.isSelected = !row.isSelected;
this.$refs.table.toggleRowSelection(row);
},