
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
})*/
}
输入参数
测试接口
数据结果
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)