1.首航加入 :row-class-name="getRowClass"
<el-table :data='ofStudent' style="width-100%" :row-class-name="getRowClass">
2.表格詳情沒有內容隱藏箭頭
getRowClass(row) { if(row.row.promotionStudentVOSs.length === 0){ // promotionStudentVOSs是你子項的數組 key return 'row-expand-cover' } }
3.樣式隱藏
.row-expand-cover td .el-table__expand-icon{ visibility: hidden !important; }