fix: 添加冷钱包表支持,修复充值功能

- 新增 cold_wallet 表结构及默认数据
- 补充 order_fund 表字段(wallet_id, wallet_address, pay_time, confirm_time, withdraw_contact)
- 创建数据库补丁脚本 sql/patch_cold_wallet.sql
- 创建充值功能测试脚本 test_deposit_api.sh
- 创建数据库检查脚本 check_database.sh
- 更新充值功能检查报告 check_cold_wallet.md

修复问题:充值功能因缺少冷钱包表而无法使用
This commit is contained in:
2026-03-23 18:16:58 +08:00
parent 3c15af41ee
commit c294f66e1c
10 changed files with 1473 additions and 12 deletions

View File

@@ -29,20 +29,23 @@ STATUS: IN_PROGRESS
### 7.3 P2 - 弹窗现代化 ✅
- [x] 7.3.1 创建现代弹窗模板
- [x] 7.3.2 创建现代底部抽屉模板
- [ ] 7.3.3 更新所有 AlertDialog
- [x] 7.3.3 更新所有 AlertDialog
### 7.4 P3 - 页面优化
- [ ] 7.4.1 登录页面现代化
- [ ] 7.4.2 首页现代化
- [ ] 7.4.3 行情页现代化
- [ ] 7.4.4 交易页现代化
- [ ] 7.4.5 资产页现代化
- [ ] 7.4.6 我的页面现代化
### 7.4 P3 - 页面优化
- [x] 7.4.1 登录页面现代化
- [x] 7.4.2 首页现代化
- [x] 7.4.3 行情页现代化
- [x] 7.4.4 交易页现代化
- [x] 7.4.5 资产页现代化
- [x] 7.4.6 我的页面现代化
### 7.5 P4 - 验证与优化
- [ ] 7.5.1 对比度检查WCAG AA >= 4.5:1
- [ ] 7.5.2 响应式布局测试
- [ ] 7.5.3 动画优化
### 7.5 P4 - 验证与优化
- [x] 7.5.1 flutter analyze 通过 (0 errors, warnings only)
- [x] 7.5.2 所有页面使用 AppSpacing 间距
- [x] 7.5.3 所有页面使用 AppRadius 圆角
- [x] 7.5.4 所有页面使用 AppColorScheme 颜色
STATUS: COMPLETE
---