From f99397d0f28574239658c67d1f05c9c1e2e9a312 Mon Sep 17 00:00:00 2001 From: 18110972313 <780768673@qq.com> Date: Thu, 22 May 2025 13:43:11 +0800 Subject: [PATCH] =?UTF-8?q?update=20=E5=88=B0=E8=B4=A7=E5=8D=95=E5=88=9B?= =?UTF-8?q?=E5=BB=BA=E8=8E=B7=E5=8F=96=E8=AE=A2=E5=8D=95=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E6=96=B9=E6=B3=95=E4=BF=AE=E6=94=B9=EF=BC=8C=E8=AE=A1=E7=AE=97?= =?UTF-8?q?=E6=9C=AA=E5=85=A5=E5=BA=93=E6=95=B0=E9=87=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/stockIn/delivery/drawer.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/stockIn/delivery/drawer.vue b/src/views/stockIn/delivery/drawer.vue index a0465ca..62abce8 100644 --- a/src/views/stockIn/delivery/drawer.vue +++ b/src/views/stockIn/delivery/drawer.vue @@ -109,7 +109,7 @@ import { getCurrentInstance, onMounted, reactive, ref, toRefs } from 'vue' import { ElForm, ElMessageBox, ElTable } from 'element-plus' import { localStorage } from '@/utils/storage' -import { createDelivery, getReceiveList, getReceiveDetail } from '@/api/delivery' +import { createDelivery, getReceiveList, getReceiveDetail, getDeliveryReceiveDetail } from '@/api/delivery' import { getORG } from '@/api/auth' const queryFormRef = ref(ElForm) @@ -203,7 +203,7 @@ const handleSelection = (val: any) => { let nameList: any = [] val.forEach((item: any) => nameList.push(item.receiveRequestName)) // 加载详情 - getReceiveDetail({nameList: nameList}).then((res: any) => { + getDeliveryReceiveDetail({nameList: nameList}).then((res: any) => { state.receiveList = res.resultObj state.receiveLoading = false })