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:
+38
-2
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
return [
|
||||
'app_name' => 'PK10 极速赛车',
|
||||
'app_name' => 'F1 赛车',
|
||||
'login' => '登录', 'register' => '注册', 'logout' => '退出',
|
||||
'username' => '用户名', 'password' => '密码', 'email' => '邮箱',
|
||||
'confirm_password' => '确认密码', 'submit' => '提交', 'cancel' => '取消',
|
||||
@@ -21,7 +21,7 @@ return [
|
||||
'register_success' => '注册成功,请验证邮箱',
|
||||
'login_failed' => '用户名或密码错误', 'account_disabled' => '账户已被禁用',
|
||||
'email_not_verified' => '请先验证邮箱',
|
||||
'pk10_title' => 'PK10 极速赛车', 'period' => '期号',
|
||||
'pk10_title' => 'F1 赛车', 'period' => '期号',
|
||||
'current_period' => '当前期', 'last_result' => '上期结果',
|
||||
'history' => '历史记录', 'place_bet' => '下注', 'my_bets' => '我的投注',
|
||||
'betting' => '投注中', 'closed' => '已封盘', 'drawing' => '开奖中',
|
||||
@@ -71,4 +71,40 @@ return [
|
||||
'sum_bs_big' => '冠亚大', 'sum_bs_small' => '冠亚小',
|
||||
'sum_bs_odd' => '冠亚单', 'sum_bs_even' => '冠亚双',
|
||||
'notify_bell' => '提醒',
|
||||
'coming_soon' => '即将开放',
|
||||
'deposit_confirm_msg' => '即将跳转到客服页面,请联系客服获取充值地址',
|
||||
'deposit_amount' => '请输入充值金额',
|
||||
'deposit_submitted' => '充值申请已提交,请联系客服完成付款',
|
||||
'withdraw_amount' => '请输入提现金额',
|
||||
'withdraw_submitted' => '提现申请已提交,请等待审核',
|
||||
'contact_admin' => '请联系管理员配置客服链接',
|
||||
'transfer_to' => '请输入对方用户名',
|
||||
'transfer_amount' => '请输入转账金额',
|
||||
'transfer_confirm' => '确认转账给',
|
||||
'transfer_success' => '转账成功',
|
||||
'amount' => '金额',
|
||||
'fund_request_history' => '充提记录',
|
||||
'fund_status_pending' => '待审核',
|
||||
'fund_status_approved' => '已通过',
|
||||
'fund_status_rejected' => '已拒绝',
|
||||
'quick_hint' => '点击按钮一键添加对应注单',
|
||||
'bets_added' => '注已添加',
|
||||
|
||||
// 报表查询 & 跟单计划
|
||||
'report_query' => '报表查询',
|
||||
'follow_plan' => '跟单计划',
|
||||
'today' => '今日',
|
||||
'yesterday' => '昨日',
|
||||
'last_7_days' => '近7天',
|
||||
'last_30_days' => '近30天',
|
||||
'custom_date' => '自定义',
|
||||
'bet_type' => '类型',
|
||||
'bet_amount' => '下注',
|
||||
'effective_flow' => '有效流水',
|
||||
'rebate_amount' => '退水',
|
||||
'win_loss' => '输赢',
|
||||
'total_win_rate' => '总胜率',
|
||||
'total_profit' => '总盈亏',
|
||||
'no_follow_plan' => '对不起,你现暂无任何跟单计划',
|
||||
'bs_plan' => '大小计划',
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user