Some checks failed
lotteryfront CI / build (push) Has been cancelled
- Added captcha validation to the player login screen, requiring users to input a captcha code for authentication. - Implemented a new API call to fetch captcha images, improving security during login. - Updated wallet display logic to ensure accurate representation of available and total balances based on player funding modes. - Enhanced documentation in AGENTS.md to clarify changes in credit flow and login requirements.
1.6 KiB
1.6 KiB
This is NOT the Next.js you know
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in node_modules/next/dist/docs/ before writing any code. Heed deprecation notices.
Learned User Preferences
- 玩家端信用盘文案与钱包盘区分:不用「派彩」口径,中奖走账期结算语义;提示语避免生硬重复「信用盘」字样。
Learned Workspace Facts
- 彩票端账号密码登录须图形验证码(后端校验 + 登录页);勿在 SSR 渲染验证码文案(hydration 不一致)。
- 信用盘流水对外类型:
win_credit(中奖释额)、bill_settlement(账期收付)、reversal含game_settlement_reversal,与钱包prize/派彩文案分离。 - 信用流水结余:
game_settlement_win/settlement_confirm/bet_hold_release/game_settlement_reversal会减used_credit并倒推结余;settlement_payout(账期收付)仅记账,affects_available_credit: false;分页balance_after须跳过前置页累计。 - 账号密码登录:
lottery-auth.ts与player-session-store须在模块加载时从sessionStorage同步恢复 Bearer(子组件useEffect早于HydratePlayerAuth,否则刷新/hall会先 401)。 - Token 进场(
EntryGate):entryLifecycleRef(idle→running→done)防 URL token 剥离或 store 写入后重复触发doEntry导致成功/失败页闪现;成功后直接router.replace('/hall')。