feat(history): 新增历史记录页面功能

- 实现历史记录表格展示功能,包含开奖期号、号码及时间等字段
- 添加号码球样式显示,支持颜色和生肖标识展示
- 集成遗漏号码分析功能,可查询号码遗漏情况
- 实现走势图分析功能,使用ECharts展示号码趋势
- 添加冷热分析功能,统计号码热度排行
- 实现波色、生肖、奇偶、大小等多维度分析工具
- 集成和值分析、连号分析、尾数分析等功能
- 添加特码冷热列表展示功能
- 实现综合统计面板功能
- 集成筛号器功能,支持多种筛选条件
- 添加号码预测和正码关联预测功能
- 实现尾首概率分析功能
- 集成颜色和生肖映射加载机制
This commit is contained in:
2026-05-03 23:42:58 +08:00
parent 182d322b4e
commit d92cf6cfbc
15 changed files with 1276 additions and 42 deletions
+98 -13
View File
@@ -1,6 +1,6 @@
{
"version": "1.0.0",
"lastScanned": 1777648534656,
"lastScanned": 1777820257271,
"projectRoot": "D:\\code\\php\\amlhc",
"techStack": {
"languages": [
@@ -54,14 +54,14 @@
"path": "addons",
"purpose": null,
"fileCount": 1,
"lastAccessed": 1777648534596,
"lastAccessed": 1777820257227,
"keyFiles": []
},
"analysis": {
"path": "analysis",
"purpose": null,
"fileCount": 2,
"lastAccessed": 1777648534608,
"lastAccessed": 1777820257228,
"keyFiles": [
"predict_analysis.php",
"predict_analysis.py"
@@ -71,7 +71,7 @@
"path": "application",
"purpose": null,
"fileCount": 8,
"lastAccessed": 1777648534609,
"lastAccessed": 1777820257239,
"keyFiles": [
"build.php",
"command.php",
@@ -84,14 +84,14 @@
"path": "extend",
"purpose": null,
"fileCount": 1,
"lastAccessed": 1777648534611,
"lastAccessed": 1777820257239,
"keyFiles": []
},
"public": {
"path": "public",
"purpose": "Public files",
"fileCount": 5,
"lastAccessed": 1777648534612,
"lastAccessed": 1777820257240,
"keyFiles": [
"admin.php",
"index.php",
@@ -103,14 +103,14 @@
"path": "runtime",
"purpose": null,
"fileCount": 1,
"lastAccessed": 1777648534612,
"lastAccessed": 1777820257240,
"keyFiles": []
},
"sql": {
"path": "sql",
"purpose": null,
"fileCount": 2,
"lastAccessed": 1777648534612,
"lastAccessed": 1777820257240,
"keyFiles": [
"amlhc.sql",
"macaujc_history.sql"
@@ -120,7 +120,7 @@
"path": "thinkphp",
"purpose": null,
"fileCount": 15,
"lastAccessed": 1777648534613,
"lastAccessed": 1777820257241,
"keyFiles": [
"base.php",
"codecov.yml",
@@ -133,7 +133,7 @@
"path": "vendor",
"purpose": "Third-party code",
"fileCount": 1,
"lastAccessed": 1777648534613,
"lastAccessed": 1777820257242,
"keyFiles": [
"autoload.php"
]
@@ -142,7 +142,7 @@
"path": "application\\api",
"purpose": "API routes",
"fileCount": 2,
"lastAccessed": 1777648534614,
"lastAccessed": 1777820257242,
"keyFiles": [
"common.php",
"config.php"
@@ -152,12 +152,97 @@
"path": "public\\assets",
"purpose": "Static assets",
"fileCount": 1,
"lastAccessed": 1777648534615,
"lastAccessed": 1777820257246,
"keyFiles": [
"index.html"
]
}
},
"hotPaths": [],
"hotPaths": [
{
"path": "public\\assets\\js\\backend\\history.js",
"accessCount": 40,
"lastAccessed": 1777724915715,
"type": "file"
},
{
"path": "application\\admin\\model\\History.php",
"accessCount": 12,
"lastAccessed": 1777724152835,
"type": "file"
},
{
"path": "application\\admin\\controller\\History.php",
"accessCount": 10,
"lastAccessed": 1777724090471,
"type": "file"
},
{
"path": "application\\admin\\view\\history\\index.html",
"accessCount": 5,
"lastAccessed": 1777707308124,
"type": "file"
},
{
"path": ".planning\\STATE.md",
"accessCount": 3,
"lastAccessed": 1777707396710,
"type": "directory"
},
{
"path": "C:\\Users\\91611\\.claude\\get-shit-done\\workflows\\do.md",
"accessCount": 1,
"lastAccessed": 1777706998579,
"type": "file"
},
{
"path": "C:\\Users\\91611\\.claude\\get-shit-done\\workflows\\quick.md",
"accessCount": 1,
"lastAccessed": 1777707018668,
"type": "file"
},
{
"path": "sql",
"accessCount": 1,
"lastAccessed": 1777707065981,
"type": "directory"
},
{
"path": "public\\assets\\js",
"accessCount": 1,
"lastAccessed": 1777707066026,
"type": "directory"
},
{
"path": "application\\admin\\view\\history\\add.html",
"accessCount": 1,
"lastAccessed": 1777707072623,
"type": "file"
},
{
"path": "application\\admin\\view\\history\\edit.html",
"accessCount": 1,
"lastAccessed": 1777707072753,
"type": "file"
},
{
"path": "sql\\amlhc.sql",
"accessCount": 1,
"lastAccessed": 1777707078109,
"type": "directory"
},
{
"path": ".planning\\quick\\260502-ljh-history\\260502-ljh-PLAN.md",
"accessCount": 1,
"lastAccessed": 1777707180604,
"type": "file"
},
{
"path": ".planning\\quick\\260502-ljh-history\\260502-ljh-SUMMARY.md",
"accessCount": 1,
"lastAccessed": 1777707369645,
"type": "file"
}
],
"userDirectives": []
}
@@ -0,0 +1,8 @@
{
"session_id": "48d5215c-775c-44f9-8ec6-6db1fd3b93eb",
"ended_at": "2026-05-02T07:44:06.062Z",
"reason": "prompt_input_exit",
"agents_spawned": 0,
"agents_completed": 0,
"modes_used": []
}
@@ -0,0 +1,8 @@
{
"session_id": "4f5fb28f-8a85-463e-be5e-c99955a9aaf9",
"ended_at": "2026-05-02T07:44:04.023Z",
"reason": "clear",
"agents_spawned": 1,
"agents_completed": 1,
"modes_used": []
}
@@ -0,0 +1,8 @@
{
"session_id": "5593524e-595e-428a-8b8b-24a839d4cc08",
"ended_at": "2026-05-02T14:36:45.873Z",
"reason": "prompt_input_exit",
"agents_spawned": 0,
"agents_completed": 0,
"modes_used": []
}
@@ -0,0 +1,8 @@
{
"session_id": "c14a7924-1cf5-49df-8355-0fc9eb55d8fb",
"ended_at": "2026-05-03T14:57:39.936Z",
"reason": "prompt_input_exit",
"agents_spawned": 0,
"agents_completed": 0,
"modes_used": []
}
-1
View File
@@ -1 +0,0 @@
{"session_id":"a1d5e02a-7411-4199-815c-5ae711cf7291","transcript_path":"C:\\Users\\91611\\.claude\\projects\\D--code-php-amlhc\\a1d5e02a-7411-4199-815c-5ae711cf7291.jsonl","cwd":"D:\\code\\php\\amlhc","model":{"id":"qwen3.6-plus[1m]","display_name":"qwen3.6-plus[1m]"},"workspace":{"current_dir":"D:\\code\\php\\amlhc","project_dir":"D:\\code\\php\\amlhc","added_dirs":[]},"version":"2.1.126","output_style":{"name":"default"},"cost":{"total_cost_usd":0,"total_duration_ms":1008,"total_api_duration_ms":0,"total_lines_added":0,"total_lines_removed":0},"context_window":{"total_input_tokens":0,"total_output_tokens":0,"context_window_size":1000000,"current_usage":null,"used_percentage":null,"remaining_percentage":null},"exceeds_200k_tokens":false,"fast_mode":false,"effort":{"level":"high"},"thinking":{"enabled":true}}
+4
View File
@@ -0,0 +1,4 @@
{
"updatedAt": "2026-05-02T07:44:04.057Z",
"missions": []
}
@@ -0,0 +1,6 @@
{
"timestamp": "2026-05-02T14:41:38.945Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-05-02T14:40:41.364Z",
"sessionId": "0402461b-cd9c-400b-8fa2-405c6db26368"
}
@@ -0,0 +1,6 @@
{
"timestamp": "2026-05-02T07:28:11.619Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-05-02T07:28:04.316Z",
"sessionId": "4f5fb28f-8a85-463e-be5e-c99955a9aaf9"
}
@@ -0,0 +1,6 @@
{
"timestamp": "2026-05-02T12:14:48.284Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-05-02T12:14:30.545Z",
"sessionId": "5593524e-595e-428a-8b8b-24a839d4cc08"
}
@@ -0,0 +1,6 @@
{
"timestamp": "2026-05-02T08:13:32.296Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-05-02T08:05:12.717Z",
"sessionId": "8dafebc5-6242-4ed6-8370-bd53345e315e"
}
@@ -0,0 +1,6 @@
{
"timestamp": "2026-05-02T12:12:11.936Z",
"backgroundTasks": [],
"sessionStartTimestamp": "2026-05-02T12:12:11.651Z",
"sessionId": "b7109af9-c36f-4869-8f05-c5c90c07b75e"
}