中國建設(shè)銀行人力資源網(wǎng)站/營銷互聯(lián)網(wǎng)推廣公司
一.需求
? ? ? ? 在頁面剛打開就默認選中指定項。
二.方法Table Methods
toggleRowSelection | 用于多選表格,切換某一行的選中狀態(tài),如果使用了第二個參數(shù),則是設(shè)置這一行選中與否(selected 為 true 則選中) | row, selected |
詳細請看elementui官網(wǎng)https://element.eleme.io/#/zh-CN/component/table
三.代碼
mounted () {// multipleSelection 想選中的數(shù)據(jù) tableData表格數(shù)據(jù)this.$nextTick(() => {this.multipleSelection.forEach(row => {this.$refs.multipleTable.toggleRowSelection(this.tableData.find(item => {return row.date == item.date;}), true)})})},