Browse Source

导入组件添加 扩展参数

master
陈薪名 10 months ago
parent
commit
7219dab1e9
  1. 16
      src/components/ImportForm/src/ImportForm.vue

16
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)

Loading…
Cancel
Save