|
|
@ -55,6 +55,9 @@ |
|
|
|
|
|
|
|
<!-- 导入 --> |
|
|
|
<ImportForm ref="importFormRef" url="/wms/supplieritem/import" :importTemplateData="importTemplateData" @success="importSuccess" /> |
|
|
|
|
|
|
|
<!-- 导入地点同步 --> |
|
|
|
<ImportForm ref="importFormRef1" url="/wms/supplieritem/importAddress" :importTemplateData="importTemplateData1" @success="importSuccess" /> |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
@ -127,6 +130,7 @@ const { getList, setSearchParams } = tableMethods |
|
|
|
const HeadButttondata = [ |
|
|
|
defaultButtons.defaultAddBtn({hasPermi:'wms:supplieritem:create'}), // 新增 |
|
|
|
defaultButtons.defaultImportBtn({hasPermi:'wms:supplieritem:import'}), // 导入 |
|
|
|
defaultButtons.defaultSupplierItemBtn({hasPermi:'wms:supplieritem:importAddress'}), // 导入供应商物料地点 |
|
|
|
defaultButtons.defaultExportBtn({hasPermi:'wms:supplieritem:export'}), // 导出 |
|
|
|
defaultButtons.defaultFreshBtn(null),//刷新 |
|
|
|
defaultButtons.defaultFilterBtn(null), //筛选 |
|
|
@ -147,6 +151,8 @@ const buttonBaseClick = (val, item) => { |
|
|
|
openForm('create') |
|
|
|
} else if (val == 'import') { // 导入 |
|
|
|
handleImport() |
|
|
|
} else if (val == 'supplierItemBtn') { // 导入供应商物料地点信息 |
|
|
|
handleImport1() |
|
|
|
} else if (val == 'export') { // 导出 |
|
|
|
handleExport() |
|
|
|
} else if (val == 'refresh') { // 刷新 |
|
|
@ -347,6 +353,18 @@ const handleExport = async () => { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** 导入供应商物料地点 */ |
|
|
|
const importFormRef1 = ref() |
|
|
|
const handleImport1 = () => { |
|
|
|
importFormRef1.value.open() |
|
|
|
} |
|
|
|
// 导入附件弹窗所需的参数 |
|
|
|
const importTemplateData1 = reactive({ |
|
|
|
templateUrl: '', |
|
|
|
templateTitle: `【${route.meta.title}】导入模版.xlsx` |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
/** 导入 */ |
|
|
|
const importFormRef = ref() |
|
|
|
const handleImport = () => { |
|
|
@ -377,6 +395,6 @@ onMounted(async() => { |
|
|
|
available: 'TRUE' |
|
|
|
} |
|
|
|
getList() |
|
|
|
importTemplateData.templateUrl = await SupplieritemApi.importTemplate() |
|
|
|
importTemplateData1.templateUrl = await SupplieritemApi.importTemplate() |
|
|
|
}) |
|
|
|
</script> |
|
|
|