1、页面
<el-table :data="tableData" stripe @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" :selectable="selectable">el-table-column>
el-table>
2、脚本
selectable(row, index) { if(row.status == 1){ return true }else { return false } },