<el-table-column label="操作" align="center" width="100" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button type="text" @click="handleCheck(scope.row)">查看</el-button>
</template>
</el-table-column>
//方法跳转
handleCheck(row) {
this.$router.push({
path: '/PracticalPerManage/detailPage',
query: {
computerNumber: row.computerNumber
}
})
},
下一页面接收参数
mounted() {
this.computerNumber = this.queryParams.computerNumber = this.$route.query.computerNumber;
},