refactor: 优化代码结构并修复类型问题

- 移除未使用的TabPane组件
- 修复类型定义和导入方式
- 优化mock数据源的环境变量判断逻辑
- 更新文档结构并归档旧文件
- 添加新的UI组件和Memo组件
- 调整API路径和响应处理
This commit is contained in:
2026-03-23 12:41:35 +08:00
parent a037843851
commit 2b86715c09
363 changed files with 39305 additions and 40622 deletions

View File

@@ -77,7 +77,7 @@ const Suppliers: React.FC = () => {
dataIndex: 'status',
key: 'status',
render: (status: string) => {
const statusMap = {
const statusMap: Record<string, string> = {
active: '活跃',
inactive: '非活跃',
pending: '待审核',