fix: 打包编译类型错误导致失败

This commit is contained in:
TsMask
2023-12-29 18:03:56 +08:00
parent b50c5250bf
commit 6f5d02e479
3 changed files with 3 additions and 3 deletions

View File

@@ -667,7 +667,7 @@ onMounted(() => {
:accept="item.filter"
:max-count="1"
:show-upload-list="false"
:custom-request="v => fnUpload(v, item.name)"
:custom-request="(v:any) => fnUpload(v, item.name)"
>
<a-button
type="primary"

View File

@@ -635,7 +635,7 @@ onMounted(() => {
:accept="item.filter"
:max-count="1"
:show-upload-list="false"
:custom-request="v => fnUpload(v, item.name)"
:custom-request="(v:any) => fnUpload(v, item.name)"
>
<a-button
type="primary"

View File

@@ -640,7 +640,7 @@ onMounted(() => {
:accept="item.filter"
:max-count="1"
:show-upload-list="false"
:custom-request="v => fnUpload(v, item.name)"
:custom-request="(v:any) => fnUpload(v, item.name)"
>
<a-button
type="primary"