docs: 新增 AI 代理学习偏好与信用盘术语规范

feat: 优化登录与入口页面加载体验

- 为登录页面添加 Suspense 边界,统一 fallback 样式
- 重构入口守卫逻辑,在布局阶段处理未登录重定向,避免闪烁
- 登录页面支持会话过期提示,并自动清理 URL 参数

feat: 信用盘与钱包盘文案差异化展示

- 底部导航「钱包」标签在信用盘模式下显示为「信用」
- 大厅余额条在信用盘模式下使用「可
This commit is contained in:
2026-06-12 20:48:10 +08:00
parent 20d2befa55
commit 7c283627d3
24 changed files with 347 additions and 92 deletions

View File

@@ -12,7 +12,9 @@ export type WalletLogItem = {
amount_abs: number;
direction: "in" | "out";
currency_code: string;
balance_after: number;
balance_after: number | null;
/** 信用盘false 表示账期收付记账,不改变可用信用 */
affects_available_credit?: boolean;
ref_id: string | null;
idempotent_key: string | null;
external_ref_no: string | null;