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(); } },