feat: 配置开发环境和清理项目结构

- 修改默认路由重定向到首页 (/home)
- 配置开发服务器使用5667端口
- 整理测试文件到temp-tests目录
- 优化项目结构便于开发和部署

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

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
woshiqp465
2025-09-15 21:35:49 +08:00
parent 9be0b9788f
commit 9683b940bf
37 changed files with 3 additions and 223 deletions

View File

@@ -0,0 +1,43 @@
import { chromium } from 'playwright';
(async () => {
const browser = await chromium.launch({ headless: false });
const page = await browser.newPage();
try {
console.log('1. 访问新端口的系统...');
await page.goto('http://localhost:5670');
await page.waitForTimeout(3000);
// 检查是否需要登录
if (page.url().includes('login')) {
console.log('2. 执行登录...');
await page.fill('input[placeholder*="账号"]', 'admin');
await page.fill('input[placeholder*="密码"]', '111111');
await page.click('button:has-text("登录")');
await page.waitForTimeout(5000);
}
console.log('3. 检查菜单结构...');
// 获取所有菜单文本
const menuTexts = await page.locator('.ant-menu-title-content').allTextContents();
console.log('\n当前菜单项:');
menuTexts.forEach((text, index) => {
console.log(` ${index + 1}. ${text}`);
});
// 截图
await page.screenshot({ path: 'final-menu-structure.png', fullPage: true });
console.log('\n截图保存为: final-menu-structure.png');
console.log('\n✅ 完成!');
} catch (error) {
console.error('❌ 错误:', error.message);
await page.screenshot({ path: 'final-error.png' });
} finally {
await page.waitForTimeout(2000);
await browser.close();
}
})();