- 在列表页文件的methods方法中写跳转代码
methods: {
handleWatch (row) {
// console.log(row.activeJobId)
this.$router.push({path: 'gd_detail/', query: {id: row.activeJobId}})
}
【总结|vue点击列表传参进入详情页】2.在详情页文件的methods方法中获取参数
init () {
this.id = this.$route.query.id
console.log(this.id)
// 获取详情数据
getGdDetail({activeJobId: this.id})
.then(res => {
console.log(res)
this.personInfo = res.query_result.serv_name
})
}
推荐阅读
- JavaScript|vue 基于axios封装request接口请求——request.js文件
- 前端|web前端dya07--ES6高级语法的转化&render&vue与webpack&export
- 前端开发|Vue2.x API 学习
- vue|Vue面试常用详细总结
- vue|电商后台管理系统(vue+python|node.js)
- 腾讯TEG实习|腾讯实习——Vue解决跨域请求
- Vue|vue-router 详解
- vue|vue3替代vuex的框架piniajs实例教程
- 总结|python爬虫入门
- Vue|Vue3.0的插槽是如何实现的()