vue父页面跳转子页面,值传递

vue父页面跳转子页面,值传递,第1张

    
    
  components: {
    'debugger-dialog': () => import('./procDebuggerDialog')
  },
data() {
    return {
      debuggerVisible: false,
    }
  },
接口调试
 procDebugger(){
      debugger
      this.debuggerVisible = true
      //const { itemId } = 1
      const data = {
        procNameId: this.procNameId,
        infCnName: this.infCnName,
        subCode: this.subCode,
        //subUsercode: this.subUsercode
      }
      this.$refs['ProcDebuggerDialog'].open({
        data
      })
/*      let data = {
        procNameId: this.procNameId,
        subCode: this.subCode,
        subUsercode: this.subUsercode
      }
      procDebugger(data).then(res => {
        this.tenditmList = res.data
      })*/
    }





欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/web/939468.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-05-17
下一篇2022-05-17

发表评论

登录后才能评论

评论列表(0条)

    保存