feat: 增强财务管理系统功能与分析能力

主要更新:
- 🎯 新增综合分析仪表板,包含关键指标卡片、预算对比、智能洞察等组件
- 📊 增强数据可视化能力,新增标签云分析、时间维度分析等图表
- 📱 优化移动端响应式设计,改进触控交互体验
- 🔧 新增多个API模块(base、budget、tag),完善数据管理
- 🗂️ 重构路由结构,新增贷款、快速添加、设置、统计等独立模块
- 🔄 优化数据导入导出功能,增强数据迁移能力
- 🐛 修复多个已知问题,提升系统稳定性

技术改进:
- 使用IndexedDB提升本地存储性能
- 实现模拟API服务,支持离线开发
- 增加自动化测试脚本,确保功能稳定
- 优化打包配置,提升构建效率

文件变更:
- 新增42个文件
- 修改55个文件
- 包含测试脚本、配置文件、组件和API模块

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
你的用户名
2025-08-24 16:41:58 +08:00
parent 4b4616de1e
commit 675fe0a1a8
154 changed files with 10035 additions and 3978 deletions

View File

@@ -4,51 +4,53 @@ import { chromium } from 'playwright';
// 启动浏览器
const browser = await chromium.launch({
headless: false, // 使用有头模式方便观察
slowMo: 500 // 减慢操作速度,方便观察
slowMo: 500, // 减慢操作速度,方便观察
});
const context = await browser.newContext({
viewport: { width: 1280, height: 720 }
viewport: { width: 1280, height: 720 },
});
const page = await context.newPage();
try {
console.log('1. 访问系统...');
await page.goto('http://localhost:5667');
// 等待页面加载完成(通过等待某个元素出现)
await page.waitForTimeout(3000);
// 检查是否已自动登录
const url = page.url();
console.log('当前URL:', url);
if (url.includes('/login')) {
console.log('需要登录,执行登录操作...');
// 如果还在登录页,说明自动登录没生效
await page.waitForTimeout(1000);
}
// 导航到交易管理页面
console.log('2. 导航到交易管理页面...');
await page.goto('http://localhost:5667/finance/transaction');
await page.waitForTimeout(2000);
// 点击新建按钮
console.log('3. 点击新建交易按钮...');
const createButton = await page.locator('button:has-text("新建交易")').first();
const createButton = await page
.locator('button:has-text("新建交易")')
.first();
await createButton.click();
await page.waitForTimeout(1000);
// 填写表单
console.log('4. 填写交易表单...');
// 选择交易类型(支出)
await page.locator('.ant-select').first().click();
await page.locator('.ant-select-item:has-text("支出")').click();
await page.waitForTimeout(500);
// 选择分类(等待分类加载)
console.log(' 选择分类...');
await page.locator('.ant-select').nth(1).click();
@@ -57,33 +59,33 @@ import { chromium } from 'playwright';
if (await categoryOption.isVisible()) {
await categoryOption.click();
}
// 输入金额
console.log(' 输入金额...');
await page.locator('input.ant-input-number-input').first().fill('299.99');
// 选择货币
console.log(' 选择货币...');
await page.locator('.ant-select').nth(2).click();
await page.locator('.ant-select-item:has-text("CNY")').click();
// 输入项目名称
console.log(' 输入项目名称...');
const projectInput = await page.locator('input[placeholder*="项目"]');
await projectInput.fill('测试项目');
// 输入描述
console.log(' 输入描述...');
const descTextarea = await page.locator('textarea[placeholder*="描述"]');
await descTextarea.fill('这是通过Playwright自动测试创建的交易记录');
// 提交表单
console.log('5. 提交表单...');
await page.locator('.ant-modal-footer button.ant-btn-primary').click();
// 等待提交完成
await page.waitForTimeout(2000);
// 检查是否有成功提示
const successMessage = await page.locator('.ant-message-success');
if (await successMessage.isVisible()) {
@@ -91,7 +93,7 @@ import { chromium } from 'playwright';
} else {
console.log('⚠️ 未检测到成功消息,检查页面状态...');
}
// 验证新记录是否出现在列表中
console.log('6. 验证新记录是否在列表中...');
const newRecord = await page.locator('text=测试项目').first();
@@ -100,10 +102,9 @@ import { chromium } from 'playwright';
} else {
console.log('⚠️ 未在列表中找到新记录');
}
console.log('\n测试完成保持浏览器打开10秒供查看...');
await page.waitForTimeout(10000);
await page.waitForTimeout(10_000);
} catch (error) {
console.error('测试失败:', error);
// 截图保存错误状态
@@ -113,4 +114,4 @@ import { chromium } from 'playwright';
await browser.close();
console.log('浏览器已关闭');
}
})();
})();