# table获取选中的行,查询页面获取选中的行、刷新页面

//获取查询界面的所有选中的行数据
this.getSelectRows()
//this.$refs.table.getSelected();

//刷新页面
this.search();

//获取明细表所有选中的行数据
this.$refs.detail.getSelected();
1
2
3
4
5
6
7
8
9