vue页面带参数跳转

tech2025-08-22  4

// 分页数据按钮操作 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' }) },```
最新回复(0)