<el-table :data="tableData" style="width: 100%" @selection-change="handleSelectionChange">
<el-table-column
type="selection"
width="55"
:selectable="checkboxInit">
</el-table-column>
<template v-for="(item,index) in tableField">
js
checkboxInit(row,index){
if(row['phase']!='wait_push'&&row['is_mql']=='N'){
return 1
}else{
return 0
}
},
网友评论