From 3e7d3a450b924efd4d584f9c2149028955ebb72f Mon Sep 17 00:00:00 2001 From: xzg <4727863@qq.com> Date: Wed, 30 Oct 2024 01:26:33 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?= =?UTF-8?q?=EF=BC=88=E5=88=87=E6=8D=A2tab=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../distribution/inventory/delivery/Unstoreddetails.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/distribution/inventory/delivery/Unstoreddetails.vue b/src/views/distribution/inventory/delivery/Unstoreddetails.vue index f782c3e5..0f852193 100644 --- a/src/views/distribution/inventory/delivery/Unstoreddetails.vue +++ b/src/views/distribution/inventory/delivery/Unstoreddetails.vue @@ -82,8 +82,8 @@ - + @@ -181,7 +181,7 @@ import { const $router = useRouter(); //跳转 const $useStore = useStore(); //权限 const $route = useRoute(); //获取地址栏参数 -const activeName = ref('1'); +const activeName = ref('2'); const dataCopy = ref([]); //拷贝数据 const dialogVisible = ref(false); const from = ref({ @@ -401,7 +401,7 @@ const onLoad = async () => { console.log(_res, '基础信息'); from.value.warehouse = data.warehouse; //已入库 from.value.unWarehouse = data.unWarehouse; //未入库 - details.data = data.warehouse; + details.data = data.unWarehouse; dataCopy.value = deepClone(from.value.warehouse); details.loadingObj.list = false; };