From 4c4431a59722707205da5df35f0838c1e6982af4 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Fri, 1 Nov 2024 10:12:14 +0800 Subject: [PATCH] 20241101 --- src/views/modules/quote/quoteDetailReport.vue | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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"/> -