当前位置:   article > 正文

vue点击列表传参进入详情页_vue中,点击列表页某一条数据进入编辑页

vue中,点击列表页某一条数据进入编辑页
  1. 在列表页文件的methods方法中写跳转代码
  methods: {
    handleWatch (row) {
      // console.log(row.activeJobId)
      this.$router.push({path: 'gd_detail/', query: {id: row.activeJobId}})
    }
  • 1
  • 2
  • 3
  • 4
  • 5

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
        })
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/215454?site
推荐阅读
相关标签
  

闽ICP备14008679号