From c72033ca9a2a74db8b10d2474dad740d4ac8b313 Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Thu, 9 Oct 2025 11:00:31 +0800 Subject: [PATCH] =?UTF-8?q?fix(wms):=20=E4=BF=AE=E6=94=B9=E5=85=A5?= =?UTF-8?q?=E5=BA=93=E7=B1=BB=E5=9E=8B=E9=BB=98=E8=AE=A4=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将入库类型默认值从空字符串改为'3' - 更新dialogForm中的instockType默认值 - 更新parentTableInfoForm中的instockType默认值 - 更新parentTableAdd方法中的instockType默认值 --- src/views/wms/instockOrderCopy/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/wms/instockOrderCopy/index.vue b/src/views/wms/instockOrderCopy/index.vue index 215bd5b..5eef4d7 100644 --- a/src/views/wms/instockOrderCopy/index.vue +++ b/src/views/wms/instockOrderCopy/index.vue @@ -745,7 +745,7 @@ const childrenTableInfoVisible = ref(false) const updateDialog = ref(false) const dialogTitle = ref('添加') const dialogForm = ref({ - instockType: instockTypeValue || '' , + instockType: instockTypeValue || '3' , orderNo: '', materialCategoryId: '', warehouseId: '', @@ -753,7 +753,7 @@ const dialogForm = ref({ }); const parentTableInfoForm = ref({ materialCategoryId: '', - instockType: instockTypeValue || '' , + instockType: instockTypeValue || '3' , auditBy: '', warehouseCode: '', instockMethond: instockMethondValue || '' , @@ -1102,7 +1102,7 @@ const viewDetails = (e) => { const parentTableAdd = () => { dialogVisible.value = true; dialogForm.value = { - instockType: instockTypeValue || '', + instockType: instockTypeValue || '3', orderNo: '', materialCategoryId: '', warehouseId: '',