| | |
| | | </template> |
| | | </el-table-column> |
| | | </el-table> |
| | | <pagination v-show="page.total > 0" :total="page.total" :layout="page.layout" :page.sync="page.current" |
| | | <pagination v-if="page" v-show="page.total > 0" :total="page.total" :layout="page.layout" :page.sync="page.current" |
| | | :limit.sync="page.size" @pagination="pagination" /> |
| | | </div> |
| | | </template> |
| | |
| | | // } |
| | | // } |
| | | }, |
| | | // 回显多选选中状态 |
| | | toggleRowSelection(list) { |
| | | this.$nextTick(() => { |
| | | this.tableData.forEach(row => { |
| | | let obj = list.find(m => m == row[this.rowKey]) |
| | | if (obj) { |
| | | this.$refs.multipleTable.toggleRowSelection(obj, true); |
| | | } |
| | | }); |
| | | }); |
| | | } |
| | | }, |
| | | }; |
| | | </script> |