fix(api): 修复 Apple Card 信息导入 URL

- 在上传接口 URL 中添加了缺失的 `/api` 前缀
- 确保了 API 路径与当前环境配置保持一致
This commit is contained in:
danial
2025-02-04 20:12:39 +08:00
parent 0df19514aa
commit 030b5a5839

View File

@@ -62,7 +62,7 @@
</a-button>
<a-upload
size="small"
:action="`${getAPIBaseUrl()}/cardInfo/AppleCard/account/batchAdd`"
:action="`${getAPIBaseUrl()}/api/cardInfo/AppleCard/account/batchAdd`"
:limit="1"
accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet"
:headers="{ Authorization: `Bearer ${getToken()}` }"