From 909653ce022c0b02a5519c4d6e7710f2d0954b3a Mon Sep 17 00:00:00 2001 From: fengyuan_yang <1976974459@qq.com> Date: Fri, 26 Dec 2025 14:51:36 +0800 Subject: [PATCH] =?UTF-8?q?2025-12-26=20pda=E5=85=B6=E4=BB=96=E5=87=BA?= =?UTF-8?q?=E5=BA=93=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/modules/other-inout/otherOutboundDetail.vue | 5 ++++- src/views/modules/other-inout/otherOutboundList.vue | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/views/modules/other-inout/otherOutboundDetail.vue b/src/views/modules/other-inout/otherOutboundDetail.vue index 6e6fa5b..c700102 100644 --- a/src/views/modules/other-inout/otherOutboundDetail.vue +++ b/src/views/modules/other-inout/otherOutboundDetail.vue @@ -231,7 +231,8 @@ export default { // 物料名称提示框相关 showPartNameTooltip: false, currentPartName: '', - tooltipStyle: { top: '0px', left: '0px' } + tooltipStyle: { top: '0px', left: '0px' }, + relatedNo: '' }; }, methods: { @@ -456,6 +457,7 @@ export default { buNo: this.buNo, warehouseId: getCurrentWarehouse(), site: localStorage.getItem('site'), + relatedNo: this.relatedNo, }; getOtherOutboundDetails(params).then(({ data }) => { @@ -475,6 +477,7 @@ export default { // 获取路由参数 this.outboundNo = this.$route.params.outboundNo; this.buNo = this.$route.params.buNo; + this.relatedNo = this.$route.params.relatedNo; if (!this.outboundNo || !this.buNo) { this.$message.error('参数错误'); this.$router.back(); diff --git a/src/views/modules/other-inout/otherOutboundList.vue b/src/views/modules/other-inout/otherOutboundList.vue index 03952d9..363b668 100644 --- a/src/views/modules/other-inout/otherOutboundList.vue +++ b/src/views/modules/other-inout/otherOutboundList.vue @@ -161,7 +161,8 @@ export default { name: 'otherOutboundDetail', params: { buNo: item.buNo, - outboundNo: item.outboundNo + outboundNo: item.outboundNo, + relatedNo: item.relatedNo } }); }