Forráskód Böngészése

docs: 更新 .claude-rules.md 中的 TODO List,标记已完成的任务

Ryuiso 1 hónapja
szülő
commit
221f42bcd6

+ 14 - 13
jk-rag-platform/.claude-rules.md

@@ -286,15 +286,15 @@ git diff HEAD --stat
 
 ### P0 - 紧急且重要
 
-- [ ] **补充核心 API Mock 数据**
-  - [ ] 登录 API (`/auth/login`, `/auth/code`)
-  - [ ] 首页统计 API (`/deepseek/overview/topData`)
-  - [ ] 应用列表 API (`/bigmodel/api/getApplicationList`)
-  - [ ] 审核列表 API (`/deepseek/api/app/audit/list`)
+- [x] **补充核心 API Mock 数据**
+  - [x] 登录 API (`/auth/login`, `/auth/code`) - 已完成于 `src/mock/authApi.ts`
+  - [x] 首页统计 API (`/deepseek/overview/topData`) - 已完成于 `src/mock/overviewApi.ts`
+  - [x] 应用列表 API (`/bigmodel/api/getApplicationList`) - 已完成于 `src/mock/applicationApi.ts`
+  - [x] 审核列表 API (`/deepseek/api/app/audit/list`) - 已完成于 `src/mock/auditApi.ts`
 
-- [ ] **完成审核页面实现**
-  - 当前使用 `audit/index.placeholder.tsx`
-  - 需要实现完整的审核功能
+- [x] **完成审核页面实现**
+  - 已完成审核列表、审核操作(通过/拒绝)、详情查看、统计数据功能
+  - 文件:`src/pages/system/audit/index.tsx`, `src/pages/system/audit/store.ts`
 
 ### P1 - 重要不紧急
 
@@ -303,11 +303,12 @@ git diff HEAD --stat
   - [ ] 移除硬编码的颜色值和间距值
   - [ ] 确保使用 `$spacing-*` 系列变量
 
-- [ ] **补充应用管理 API Mock**
-  - [ ] 应用详情 API
-  - [ ] 创建应用 API
-  - [ ] 更新应用 API
-  - [ ] 删除应用 API
+- [x] **补充应用管理 API Mock**
+  - [x] 应用列表 API
+  - [x] 应用详情 API
+  - [x] 创建应用 API
+  - [x] 更新应用 API
+  - [x] 删除应用 API
 
 - [ ] **完善文档**
   - [ ] 更新 README.md

+ 6 - 8
jk-rag-platform/src/components/common/AppCard/index.scss

@@ -379,10 +379,9 @@
             color: $text-primary;
         }
 
-        .iconify {
-            font-size: $icon-lg;
-            display: inline-flex;
-            align-items: center;
+        svg {
+            width: 18px;
+            height: 18px;
         }
     }
 
@@ -414,10 +413,9 @@
             box-shadow: 0 2px 8px rgba(0, 93, 128, 0.2);
         }
 
-        .iconify {
-            font-size: $icon-lg;
-            display: inline-flex;
-            align-items: center;
+        svg {
+            width: 18px;
+            height: 18px;
         }
     }
 }