From 13c2d446b32b74e58f5a8f01e4ba5fd38ad06b73 Mon Sep 17 00:00:00 2001 From: PigBaoBei <2739175034@qq.com> Date: Wed, 6 Dec 2023 11:09:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=A2=84=E7=BA=A6=E5=BA=93?= =?UTF-8?q?=E5=AD=98=E5=93=81=E6=98=AF=E5=90=A6=E6=8B=86=E5=8C=85=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../reservation/reservationAddFrom.vue | 10 ++++++ .../signfor/distributionSignforedt.vue | 32 +++++++++---------- src/views/mail/order/add.vue | 5 +++ 3 files changed, 31 insertions(+), 16 deletions(-) diff --git a/src/views/distribution/reservation/reservationAddFrom.vue b/src/views/distribution/reservation/reservationAddFrom.vue index fae2efba..7e70512d 100644 --- a/src/views/distribution/reservation/reservationAddFrom.vue +++ b/src/views/distribution/reservation/reservationAddFrom.vue @@ -2018,6 +2018,11 @@ export default { inventoryList.records.forEach(item => { item.reservationNum = '0'; item.applyNum = item.quantityStock - item.quantityOccupied; + if (item.unpack){ + item.unpack = '是' + }else { + item.unpack = '否' + } }); this.page.total = inventoryList.total; console.log('res :>> ', res); @@ -2325,6 +2330,11 @@ export default { const inventoryList = res.data.data; inventoryList.records.forEach(item => { item.reservationNum = '0'; + if (item.unpack){ + item.unpack = '是' + }else { + item.unpack = '否' + } }); this.page.total = inventoryList.total; this.inventoryInfo = inventoryList.records; diff --git a/src/views/distribution/signfor/distributionSignforedt.vue b/src/views/distribution/signfor/distributionSignforedt.vue index e5b4062c..0a373adf 100644 --- a/src/views/distribution/signfor/distributionSignforedt.vue +++ b/src/views/distribution/signfor/distributionSignforedt.vue @@ -328,8 +328,8 @@ :initial-index="1" fit="cover" /> - - + +
@@ -1333,17 +1333,17 @@ const menuData2 = ref([ sortable: true, head: true, }, - { - prop: 'orderPackageGroundingStatusName', - label: '上架状态', - type: 4, - values: '', - width: '200', - checkarr: [], - fixed: false, - sortable: true, - head: true, - }, + // { + // prop: 'orderPackageGroundingStatusName', + // label: '上架状态', + // type: 4, + // values: '', + // width: '200', + // checkarr: [], + // fixed: false, + // sortable: true, + // head: true, + // }, { prop: 'orderPackageStockupStatusName', label: '备货状态', @@ -2045,7 +2045,7 @@ getDetail(RouterId.value).then(res => { }); } console.log(srcListC.value,'srcListC'); - + }); const handleRemove = () => { console.log('图片移除事件'); @@ -2329,7 +2329,7 @@ const ImgSuccessE = (response, uploadFile) => { } } :deep(.el-dialog__body) { - + img { width: 100%; } @@ -2370,7 +2370,7 @@ const ImgSuccessE = (response, uploadFile) => { margin-bottom: 10px; } :deep(.el-dialog__body) { - + width: 100%; height: 100%; box-sizing: border-box; diff --git a/src/views/mail/order/add.vue b/src/views/mail/order/add.vue index 9ba45fbc..39c129ab 100644 --- a/src/views/mail/order/add.vue +++ b/src/views/mail/order/add.vue @@ -2074,6 +2074,11 @@ inventoryList.records.forEach(item => { item.reservationNum = '0'; item.applyNum = item.quantityStock - item.quantityOccupied; + if (item.unpack){ + item.unpack = '是' + }else { + item.unpack = '否' + } }); this.page.total = inventoryList.total; console.log('res :>> ', res);