From 7219dab1e93d1abfa2ddfd0e1c56f271c9f2fcb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E8=96=AA=E5=90=8D?= <942005050@qq.com> Date: Fri, 8 Dec 2023 16:21:24 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=BC=E5=85=A5=E7=BB=84=E4=BB=B6=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=20=E6=89=A9=E5=B1=95=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/ImportForm/src/ImportForm.vue | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/components/ImportForm/src/ImportForm.vue b/src/components/ImportForm/src/ImportForm.vue index d911a51be..b71ee0cb2 100644 --- a/src/components/ImportForm/src/ImportForm.vue +++ b/src/components/ImportForm/src/ImportForm.vue @@ -13,7 +13,9 @@ '&updatePart=' + updatePart + '&outFile=' + - outFile + outFile + + '&fromInventoryStatus=' + fromInventoryStatus + + '&toInventoryStatus=' + toInventoryStatus " :auto-upload="false" :disabled="formLoading" @@ -167,6 +169,18 @@ const props = defineProps({ type: Boolean, required: false, default: false + }, + // 库存修改 扩展额外属性 + fromInventoryStatus: { + type: String, + required: false, + default: '' + }, + // 库存修改 扩展额外属性 + toInventoryStatus: { + type: String, + required: false, + default: '' } }) const importTemplateData = ref(props.importTemplateData)