feat: 重构代码架构 + 新增报表/跟单/输赢统计功能
- 拆分 HomeController → TransactionController, ReportWebController, FollowPlanController - 新增 Service 层: TransactionService, ReportService, FollowPlanService - pk10.php JS 抽离为 4 个独立文件 (sound/race/bet/poll) - 前台新增报表查询页面 (/report) + 跟单计划页面 (/follow-plan) - 后台新增跟单计划管理 + 用户输赢明细统计 - 封盘状态显示倒计时 (x:xx) - 音效仅在开奖弹窗打开时播放 - 路由按模块分组整理 - autoload 支持 App\Services 命名空间
This commit is contained in:
@@ -29,6 +29,14 @@ spl_autoload_register(function ($class) {
|
||||
}
|
||||
}
|
||||
|
||||
if (str_starts_with($class, 'App\\Services\\')) {
|
||||
$file = __DIR__ . DIRECTORY_SEPARATOR . $classPath;
|
||||
if (file_exists($file)) {
|
||||
require_once $file;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
if (str_starts_with($class, 'App\\Core\\')) {
|
||||
$relativePath = substr($classPath, strlen('App' . DIRECTORY_SEPARATOR . 'Core' . DIRECTORY_SEPARATOR));
|
||||
$file = APP_CORE_PATH . $relativePath;
|
||||
|
||||
Reference in New Issue
Block a user