Browse Source

2025-04-24

plmPartNo
ifsPartNo
master
fengyuan_yang 9 months ago
parent
commit
808a559d29
  1. 4
      src/views/modules/part/bomManagement.vue
  2. 6
      src/views/modules/part/routingManagement.vue

4
src/views/modules/part/bomManagement.vue

@ -2657,7 +2657,7 @@ export default {
if (this.$route.params && this.$route.params.type && this.$route.params.type === 'quote'){ if (this.$route.params && this.$route.params.type && this.$route.params.type === 'quote'){
this.handleQueryBomByQuote(); this.handleQueryBomByQuote();
} else if (this.$route.params.partNo) { } else if (this.$route.params.partNo) {
this.searchData.partNo = this.$route.params.partNo
this.searchData.plmPartNo = this.$route.params.partNo
this.getDataList() this.getDataList()
} else if (this.initPage === false) { } else if (this.initPage === false) {
this.getDataList() this.getDataList()
@ -2672,7 +2672,7 @@ export default {
handleQueryBomByQuote () { handleQueryBomByQuote () {
let params = { let params = {
site: this.$store.state.user.site, site: this.$store.state.user.site,
partNo:this.$route.params.partNo,
plmPartNo: this.$route.params.partNo,
bomType: this.$route.params.bomType, bomType: this.$route.params.bomType,
engChgLevel: this.$route.params.engChgLevel, engChgLevel: this.$route.params.engChgLevel,
page: this.pageIndex, page: this.pageIndex,

6
src/views/modules/part/routingManagement.vue

@ -2687,9 +2687,9 @@ export default {
activated() { activated() {
if (this.$route.params && this.$route.params.type && this.$route.params.type === 'quote') { if (this.$route.params && this.$route.params.type && this.$route.params.type === 'quote') {
this.handleQueryRoutingByQuote();
this.handleQueryRoutingByQuote()
} else if (this.$route.params.partNo) { } else if (this.$route.params.partNo) {
this.searchData.partNo = this.$route.params.partNo
this.searchData.plmPartNo = this.$route.params.partNo
this.getDataList() this.getDataList()
} else if (this.initPage === false) { } else if (this.initPage === false) {
this.getDataList() this.getDataList()
@ -2703,7 +2703,7 @@ export default {
handleQueryRoutingByQuote(){ handleQueryRoutingByQuote(){
let params = { let params = {
site: this.$store.state.user.site, site: this.$store.state.user.site,
partNo:this.$route.params.partNo,
plmPartNo: this.$route.params.partNo,
routingType: this.$route.params.routingType, routingType: this.$route.params.routingType,
engChgLevel: this.$route.params.engChgLevel, engChgLevel: this.$route.params.engChgLevel,
page: this.pageIndex, page: this.pageIndex,

Loading…
Cancel
Save