在 el-table-column type 类型为 selection 组件中,增加 :selectable=’ 办法名 ’
<template>
<el-table :data="tableData" v-loading="loading" max-height="570" stripe :header-cell-style="headerStyle" @selection-change="handleSelectionLeftChange">
<el-table-column type="selection" :selectable='selectEnable'>
</el-table-column>
</el-table>
</template>
判断是否禁用办法函数
selectEnable(row, rowIndex) {if ('此处是判断条件') {return false // 禁用} else {return true// 不禁用}
}