// 分页数据按钮操作
pageOper({ method, index, row }) {
switch (method) {
// 详情
case 'details':
this.$router.push({ path: `/nucleic/nucleicTestDetails/${row.logId}` })
break
default:
this.$message.error('未知的操作类型');
}
},```
back() {
this.$router
.push({ path
: '/nucleic/nucleicTest' })
},```