Browse Source

20241126

java8
qiezi 1 year ago
parent
commit
052430ac3b
  1. 8
      src/views/modules/quote/quoteDetailReport.vue

8
src/views/modules/quote/quoteDetailReport.vue

@ -279,6 +279,8 @@ export default {
codeDesc: '', codeDesc: '',
}, },
propertyItemList: [], propertyItemList: [],
count: 0,
} }
}, },
methods: { methods: {
@ -413,12 +415,14 @@ export default {
}, },
created() { created() {
this.getSiteAndBuByUserName(); this.getSiteAndBuByUserName();
this.handleQuery();
}, },
activated() { activated() {
console.log(this.queryForm)
if (this.$route.params.type && this.$route.params.type === 'quote'){ if (this.$route.params.type && this.$route.params.type === 'quote'){
this.queryForm.quoteVersionNo = this.$route.params.quoteVersionNo; this.queryForm.quoteVersionNo = this.$route.params.quoteVersionNo;
this.count++
this.handleQuery();
}
if (this.count === 0){
this.handleQuery(); this.handleQuery();
} }
}, },

Loading…
Cancel
Save