template
<el-table ref="table" :data="tableData" :row-key="(row) => row.id" border stripe @selection-change="selectionChange">
<el-table-column type="selection" :reserve-selection="true" width="50" align="center"></el-table-column>
...
data
tableData: [],
multipleSelection: []
methods
searchData () {
this.searchForm.pageIndex = 1
this.$refs.table && this.$refs.table.clearSelection() //清除选中
this.getDataList()
},
selectionChange (val) {
this.multipleSelection = val
}
网友评论