From f162b89f92ece82bf2a70fed18cd1af52e31ab84 Mon Sep 17 00:00:00 2001 From: xuhuajiao <13476289682@163.com> Date: Thu, 27 Nov 2025 17:47:27 +0800 Subject: [PATCH] =?UTF-8?q?=E9=9C=80=E6=B1=82=E4=BC=98=E5=8C=961127?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../checkManage/dataScreening/girdList.vue | 13 ++++++++++++- .../checkManage/dataScreening/shelfList.vue | 6 ++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/views/visualCheck/checkManage/dataScreening/girdList.vue b/src/views/visualCheck/checkManage/dataScreening/girdList.vue index 01e8a8e..b29ac2a 100644 --- a/src/views/visualCheck/checkManage/dataScreening/girdList.vue +++ b/src/views/visualCheck/checkManage/dataScreening/girdList.vue @@ -570,7 +570,18 @@ export default { this.$refs.eform.form.shelfId = this.bookShelfDetails.id this.$refs.eform.form.toward = this.getGridToward this.$refs.eform.form.gridShelf = this.gridShelf - this.$refs.eform.form.stockRegion = this.floorName + '-' + this.regionName + '-' + this.bookShelfDetails.shelfName + this.gridShelf + '架' + if (this.bookShelfDetails.rowType === 1) { + // 单面类型 + this.$refs.eform.form.stockRegion = this.floorName + '-' + this.regionName + '-' + this.bookShelfDetails.shelfName + this.gridShelf + '架' + } else { + this.$refs.eform.form.stockRegion = this.floorName + '-' + this.regionName + '-' + this.bookShelfDetails.shelfName + (this.tabIndex === 0 ? 'A面' : 'B面') + this.gridShelf + '架' + } + + console.log('this.floorName', this.floorName) + console.log('this.regionName', this.regionName) + console.log('this.shelfName', this.bookShelfDetails.shelfName) + console.log('this.bookShelfDetails', this.bookShelfDetails) + console.log('this.gridShelf', this.gridShelf) } else { // if (item.isCheck) { // this.$refs.eform.formVisible = true diff --git a/src/views/visualCheck/checkManage/dataScreening/shelfList.vue b/src/views/visualCheck/checkManage/dataScreening/shelfList.vue index ace8de2..5980504 100644 --- a/src/views/visualCheck/checkManage/dataScreening/shelfList.vue +++ b/src/views/visualCheck/checkManage/dataScreening/shelfList.vue @@ -343,7 +343,13 @@ export default { toAdd(type) { // this.$refs.eform.formVisible = true this.$refs.eform.form.shelfId = this.bookShelfDetails.id + // if (this.bookShelfDetails.rowType === 1) { + // // 单面类型 + // } else { + // this.$refs.eform.form.stockRegion = this.floorName + '-' + this.regionName + '-' + this.bookShelfDetails.shelfName + (this.tabIndex === 0 ? 'A面' : 'B面') + // } this.$refs.eform.form.stockRegion = this.floorName + '-' + this.regionName + '-' + this.bookShelfDetails.shelfName + this.$refs.eform.form.toward = parseInt(this.tabIndex) + 1 this.$refs.eform.setData(type) }, doExport(type) {