refactor: 重构项目结构并优化代码

- 删除无用的文件和错误日志
- 创建统一的 imports 模块集中管理依赖
- 重构组件使用新的 imports 方式
- 修复文档路径大小写问题
- 优化类型定义和接口导出
- 更新依赖版本
- 改进错误处理和API配置
- 统一组件导出方式
This commit is contained in:
2026-03-27 16:56:06 +08:00
parent 2748456d8a
commit 22308fe042
337 changed files with 37060 additions and 57483 deletions

View File

@@ -1,5 +1,6 @@
import React, { useState, useEffect } from 'react';
import {
useState,
useEffect,
Card,
Table,
Button,
@@ -18,8 +19,6 @@ import {
Divider,
Alert,
Spin,
} from 'antd';
import {
PlusOutlined,
CheckCircleOutlined,
CloseCircleOutlined,
@@ -29,14 +28,15 @@ import {
ApiOutlined,
ReloadOutlined,
DeleteOutlined,
} from '@ant-design/icons';
Title,
Text,
Option,
FC,
} from '@/imports';
import type { ColumnsType } from 'antd/es/table';
import { platformAuthDataSource } from '@/services/platformAuthDataSource';
import { PlatformAccount, PlatformAccountStats, Platform } from '@/types/platform';
const { Title, Text } = Typography;
const { Option } = Select;
const PLATFORM_CONFIG: Record<string, { color: string; text: string; icon: React.ReactNode }> = {
// TikTok系列
TIKTOK: { color: 'cyan', text: 'TikTok', icon: <ShopOutlined /> },