bug修复

This commit is contained in:
caozehui
2025-04-08 09:43:12 +08:00
parent e1a740f8bf
commit 08cffa4256
13 changed files with 368 additions and 326 deletions

View File

@@ -17,6 +17,7 @@
:on-exceed="BaseHandleExceed"
:on-remove="BaseHandleRemove"
style="width: 100% !important;"
accept=".docx"
class="upload-container"
>
<el-button type="primary">选择文件</el-button>
@@ -33,6 +34,7 @@
:on-exceed="DataHandleExceed"
:on-remove="DataHandleRemove"
style="width: 100% !important;"
accept=".docx"
class="upload-container"
>
<el-button type="primary">选择文件</el-button>
@@ -254,7 +256,7 @@ const BaseHandleChange = async(param : UploadFile) => {
baseFileName.value = param.name;
baseFileUrl.value = URL.createObjectURL(param.raw as Blob);
excelFormData.append('baseFile', param.raw as Blob, param.name);
formContent.value.baseFile = param.name;
};