修复TypeScript类型定义问题并删除未使用的客服管理页面文件

This commit is contained in:
WUSIJIAN
2026-01-04 14:23:58 +08:00
parent 781c5222de
commit a780df0231
7 changed files with 9 additions and 50 deletions

View File

@@ -261,7 +261,7 @@ const handleCustomUpload = async (file: File) => {
formData.append('type', 'zip');
formData.append('fileName', file.name);
const response = await importProduct(formData);
const response: any = await importProduct(formData);
console.log('导入响应:', response);
if (response.code === 0 || response.failCount !== undefined) {