diff --git a/src/views/modules/quote/quoteDetailReport.vue b/src/views/modules/quote/quoteDetailReport.vue index 9014f50..14bead3 100644 --- a/src/views/modules/quote/quoteDetailReport.vue +++ b/src/views/modules/quote/quoteDetailReport.vue @@ -400,15 +400,18 @@ export default { id:row.quoteId, createBy: this.$store.state.user.name, } + this.queryLoading = true againQuote(params).then(({data})=>{ if (data && data.code === 0){ this.$message.success(data.msg) this.handleQuery(); }else { this.$message.warning(data.msg) + this.queryLoading = false } }).catch((error)=>{ this.$message.error(error) + this.queryLoading = false }) }) } @@ -504,14 +507,13 @@ export default { style="width: 100px; height: 80px"/> -