diff --git a/src/views/modules/ecss/codelnotify.vue b/src/views/modules/ecss/codelnotify.vue index c54c35e..f8045e7 100644 --- a/src/views/modules/ecss/codelnotify.vue +++ b/src/views/modules/ecss/codelnotify.vue @@ -1349,7 +1349,7 @@ sortLv: 0, status: true, fixed: '', - columnWidth: 100 + columnWidth: 60 }, { userId: this.$store.state.user.name, @@ -1439,7 +1439,7 @@ sortLv: 0, status: true, fixed: '', - columnWidth: 60 + columnWidth: 50 }, { userId: this.$store.state.user.name, @@ -1780,6 +1780,7 @@ buNo:this.currentRow.buNo, createBy:this.currentRow.createBy, delNo:this.currentRow.delNo, + cmcInvoice:this.currentRow.cmcInvoice, notifyStatus:'已下达', walMartOrderFlag:this.walMartOrderFlag } @@ -1980,6 +1981,9 @@ getBuList(tempData).then(({data}) => { if (data.code === 0) { this.buList = data.row2 + if (this.buList.length===1) { + this.searchData.buNo = this.buList[0].buNo; + } } }) }, diff --git a/src/views/modules/ecss/codelnotifyConfirm.vue b/src/views/modules/ecss/codelnotifyConfirm.vue index d6f8372..f10c011 100644 --- a/src/views/modules/ecss/codelnotifyConfirm.vue +++ b/src/views/modules/ecss/codelnotifyConfirm.vue @@ -1493,7 +1493,7 @@ sortLv: 0, status: true, fixed: '', - columnWidth: 100 + columnWidth: 60 }, { userId: this.$store.state.user.name, @@ -1583,7 +1583,7 @@ sortLv: 0, status: true, fixed: '', - columnWidth: 60 + columnWidth: 50 }, { userId: this.$store.state.user.name, @@ -1747,7 +1747,7 @@ sortLv: 0, status: true, fixed: '', - columnWidth: 100 + columnWidth: 60 }, { userId: this.$store.state.user.name, @@ -2144,6 +2144,9 @@ getBuList(tempData).then(({data}) => { if (data.code === 0) { this.buList = data.row2 + if (this.buList.length===1) { + this.searchData.buNo = this.buList[0].buNo; + } } }) }, diff --git a/src/views/modules/ecss/createDeclaration.vue b/src/views/modules/ecss/createDeclaration.vue index b8c2fb0..7e69132 100644 --- a/src/views/modules/ecss/createDeclaration.vue +++ b/src/views/modules/ecss/createDeclaration.vue @@ -1617,6 +1617,9 @@ getBuList(tempData).then(({data}) => { if (data.code === 0) { this.buList = data.row2 + if (this.buList.length===1) { + this.searchData.buNo = this.buList[0].buNo; + } } }) }, diff --git a/src/views/modules/ecss/del_upload_excel.vue b/src/views/modules/ecss/del_upload_excel.vue index 64fe1ff..0d5ffb2 100644 --- a/src/views/modules/ecss/del_upload_excel.vue +++ b/src/views/modules/ecss/del_upload_excel.vue @@ -67,7 +67,7 @@ getBuList(tempData).then(({data}) => { if (data.code === 0) { this.buList = data.row2 - if(data.row2.length>0){ + if(data.row2.length===1){ this.pageData.buNo=data.row2[0].buNo } }