按钮防重复点击

This commit is contained in:
2023-08-23 16:26:39 +08:00
parent 6060a36d92
commit f6ba33b0a2
11 changed files with 95 additions and 107 deletions

View File

@ -90,7 +90,6 @@ export default {
this.userOrderId = urlParams.get('userOrderId');
this.orderCode=urlParams.get('orderCode');
this.taskOrderId=urlParams.get('taskOrderId') ? urlParams.get('taskOrderId') : '';
// console.log(this.queryType)
await this.getDetail();
},
methods:{
@ -101,9 +100,9 @@ export default {
orderCode:this.orderCode,
taskOrderId:this.taskOrderId ? this.taskOrderId : ''
})
if(result.code === 200){
this.orderDetailInfo=result.data;
}
// if(result.code === 200){
this.orderDetailInfo=result;
// }
}
}
}