|
@ -13,7 +13,9 @@ |
|
|
'&updatePart=' + |
|
|
'&updatePart=' + |
|
|
updatePart + |
|
|
updatePart + |
|
|
'&outFile=' + |
|
|
'&outFile=' + |
|
|
outFile |
|
|
outFile + |
|
|
|
|
|
'&fromInventoryStatus=' + fromInventoryStatus + |
|
|
|
|
|
'&toInventoryStatus=' + toInventoryStatus |
|
|
" |
|
|
" |
|
|
:auto-upload="false" |
|
|
:auto-upload="false" |
|
|
:disabled="formLoading" |
|
|
:disabled="formLoading" |
|
@ -167,6 +169,18 @@ const props = defineProps({ |
|
|
type: Boolean, |
|
|
type: Boolean, |
|
|
required: false, |
|
|
required: false, |
|
|
default: false |
|
|
default: false |
|
|
|
|
|
}, |
|
|
|
|
|
// 库存修改 扩展额外属性 |
|
|
|
|
|
fromInventoryStatus: { |
|
|
|
|
|
type: String, |
|
|
|
|
|
required: false, |
|
|
|
|
|
default: '' |
|
|
|
|
|
}, |
|
|
|
|
|
// 库存修改 扩展额外属性 |
|
|
|
|
|
toInventoryStatus: { |
|
|
|
|
|
type: String, |
|
|
|
|
|
required: false, |
|
|
|
|
|
default: '' |
|
|
} |
|
|
} |
|
|
}) |
|
|
}) |
|
|
const importTemplateData = ref(props.importTemplateData) |
|
|
const importTemplateData = ref(props.importTemplateData) |
|
|