From 052430ac3b846a85ca9eb69b3674aee9f6910566 Mon Sep 17 00:00:00 2001 From: qiezi <15576055375@163.com> Date: Tue, 26 Nov 2024 17:40:01 +0800 Subject: [PATCH] 20241126 --- src/views/modules/quote/quoteDetailReport.vue | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/modules/quote/quoteDetailReport.vue b/src/views/modules/quote/quoteDetailReport.vue index 7561f1f..5ccdfa6 100644 --- a/src/views/modules/quote/quoteDetailReport.vue +++ b/src/views/modules/quote/quoteDetailReport.vue @@ -279,6 +279,8 @@ export default { codeDesc: '', }, propertyItemList: [], + + count: 0, } }, methods: { @@ -413,12 +415,14 @@ export default { }, created() { this.getSiteAndBuByUserName(); - this.handleQuery(); }, activated() { - console.log(this.queryForm) if (this.$route.params.type && this.$route.params.type === 'quote'){ this.queryForm.quoteVersionNo = this.$route.params.quoteVersionNo; + this.count++ + this.handleQuery(); + } + if (this.count === 0){ this.handleQuery(); } },