<el-table ref="multipleTable"
@select='selectionChange' :data="pagedata"
tooltip-effect="dark"
:height="tableHeight"
border highlight-current-row style="width: 100%;"
@selection-change="handleSelectionChange"
row-key="id"
@expand-change="clickTable">
.......
</el-table>
clickTable(row, expandedRows) {
console.log(row)
console.log(expandedRows)
}