d8cd38c4de
feat(theme): update color scheme with new Slate theme and improved surface hierarchy
...
Updated the app's color scheme to implement a new "Slate" theme with refined dark and light variants. Changed background colors from #0A0E14 to #0B1120 for dark mode and updated surface layer colors to follow Material Design 3 specifications. Modified text colors and outline variants for better contrast and accessibility. Updated font sizes in transaction details screen from 11px to 12px for improved readability.
2026-04-05 22:24:04 +08:00
sion
2fbc47117c
111
2026-04-05 19:43:31 +08:00
sion
37290e7846
111
2026-04-04 21:19:29 +08:00
ed25bb2da4
refactor: 优化字号主题体系,参考成熟交易平台标准
...
- 重构主题字号体系 (h1-h4, body, amount等)
- 修复16个页面文件中的硬编码字号
- 新字号层级参考币安/OKX标准
- Display: 22/20/18px (总资产、价格)
- Headline: 15/14/13px (标题、副标题)
- Body: 13/12/11px (正文、辅助文字)
- Label: 11/10/9px (标签)
- Number: 22/16/13px (数字)
2026-04-01 12:49:17 +08:00
7df584887b
fix: 修复复制地址提示层级问题,改用 toast 提示
...
- 创建统一的 ToastUtils 工具类
- 使用 BotToast.showCustomText 确保显示在所有弹窗之上
- 更新三处复制地址的代码使用新的 toast 方案
- 添加阴影效果提升视觉层次
- 支持成功/错误/警告等多种提示类型
2026-03-30 11:26:47 +08:00
df0e8beba9
feat(ui): 应用新设计系统到 Flutter 项目
...
- 更新颜色系统为 Material Design 3
* Primary: #72dcff (青色)
* Secondary: #dd8bfb (紫色)
* Tertiary: #afffd1 (绿色)
- 创建新的 UI 组件
* GlassPanel: 毛玻璃效果面板
* NeonGlow: 霓虹光效组件
* GradientButton: 渐变按钮组件
- 更新所有页面样式
* 交易页面 (trade_page.dart)
* 行情页面 (market_page.dart)
* 资产页面 (asset_page.dart)
* 我的页面 (mine_page.dart)
* 订单页面 (orders_page.dart)
- 支持深色和浅色主题
- 所有 UI 文字使用中文
- 保持现有 API 接口不变
变更统计:
- 9 个文件修改
- 1,893 行新增
- 691 行删除
- 3 个新组件
2026-03-24 02:16:19 +08:00
6d7c4b0e93
refactor(theme): 移除硬编码颜色并统一使用主题系统
...
- 从多个页面移除对 `app_colors.dart` 的直接引用
- 在资产卡片和主页概览卡片中使用 `AppColorScheme.assetCardGradient` 替代硬编码渐变
- 在注册页面使用 `AppColorScheme` 和 `AppSpacing` 主题常量
- 移除未使用的导入以清理代码
2026-03-23 22:15:47 +08:00
5c8df495c3
fix: 完善资金充值/提现逻辑
...
- 添加交易账户余额检查
- 添加用户端订单管理页面
- 更新测试报告
2026-03-23 21:25:37 +08:00
b40c9f8360
feat(ui): 优化所有页面使用现代设计系统
...
- 使用 AppSpacing 替换硬编码间距
- 使用 AppRadius 替换硬编码圆角
- 使用 withValues(alpha:) 替换 withOpacity
- 优化 login_page, home_page, market_page, trade_page, asset_page, mine_page
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-23 15:37:59 +08:00
sion
91227b7e51
feat: 重构充值提现功能,添加冷钱包管理
...
后端改动:
- 新增冷钱包管理模块(ColdWallet实体、Mapper、Service、Controller)
- 充值流程:创建订单→显示钱包地址→用户确认打款→管理员审核
- 提现流程:用户输入地址和联系方式→冻结余额→管理员审核
- OrderFund新增字段:walletId, walletAddress, withdrawContact, payTime, confirmTime
前端改动(monisuo-admin):
- 新增冷钱包管理页面(wallets.vue)
- 优化订单管理页面,支持新的状态流转
- 添加调试日志帮助排查登录问题
前端改动(flutter_monisuo):
- 更新OrderFund模型支持新字段
- 充值成功后显示钱包地址弹窗
- 提现时收集提现地址和联系方式
- 新增资金订单页面
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com >
2026-03-22 23:16:41 +08:00