| | |
| | | size="mini" |
| | | type="text" |
| | | icon="el-icon-view" |
| | | @click="handleDetail(scope.row,scope.index)" |
| | | @click="handleDetail(scope.row.id)" |
| | | >详细</el-button> |
| | | </template> |
| | | </el-table-column> |
| | |
| | | data() { |
| | | return { |
| | | activeIndex: '1', |
| | | activeIndex2: '2', |
| | | areaList:[], |
| | | dateRange: '', |
| | | company: '', |
| | |
| | | handleCurrentChange(val) { |
| | | console.log(`当前页: ${val}`); |
| | | }, |
| | | handleDetail(index, row) { |
| | | console.log(index, row); |
| | | this.$router.push("/examine/detail/detail") |
| | | handleDetail(id) { |
| | | this.$router.push({ |
| | | path: '/examine/detail/detail', |
| | | query: { |
| | | id: id, |
| | | } |
| | | }) |
| | | }, |
| | | handleDelete(index, row) { |
| | | console.log(index, row); |