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

Loading…
Cancel
Save