refactor: 彻底清除所有openhis痕迹
- 重命名目录: openhis-server-new → healthlink-his-server - 重命名目录: openhis-ui-vue3 → healthlink-his-ui - 重命名Java类: OpenHisApplication → HealthLinkHisApplication - 重命名Java类: OpenHisMiniApp → HealthLinkHisMiniApp - 重命名组件目录: OpenHis → HealthLinkHis - 重命名样式文件: openhis.scss → healthlink-his.scss - 重命名配置: nginx-openhis.conf → nginx-healthlink-his.conf - 更新所有源码引用 (0个残留) - 更新所有文档/脚本/配置中的引用
This commit is contained in:
41
healthlink-his-ui/tests/e2e/specs/debug-page.spec.ts
Normal file
41
healthlink-his-ui/tests/e2e/specs/debug-page.spec.ts
Normal file
@@ -0,0 +1,41 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
test('debug page load', async ({ page }) => {
|
||||
// 登录
|
||||
await page.goto('http://localhost:81/');
|
||||
const loginResp = await page.request.post('http://localhost:18082/healthlink-his/login', {
|
||||
data: { username: 'doctor1', password: '123456', tenantId: '1', code: '', uuid: '' }
|
||||
});
|
||||
const loginData = await loginResp.json();
|
||||
await page.context().addCookies([{
|
||||
name: 'Admin-Token',
|
||||
value: loginData.token,
|
||||
domain: 'localhost',
|
||||
path: '/'
|
||||
}]);
|
||||
|
||||
// 导航到门诊医生站
|
||||
await page.goto('http://localhost:81/clinicManagement/doctorStation');
|
||||
await page.waitForLoadState('networkidle');
|
||||
await page.waitForTimeout(8000); // 等待更长时间
|
||||
|
||||
// 获取页面 HTML
|
||||
const html = await page.content();
|
||||
console.log('=== HTML 长度:', html.length);
|
||||
console.log('=== 前 3000 字符 ===');
|
||||
console.log(html.substring(0, 3000));
|
||||
console.log('=== 检查 Vue app ===');
|
||||
const appExists = await page.evaluate(() => !!document.querySelector('#app'));
|
||||
console.log('App exists:', appExists);
|
||||
const appChildren = await page.evaluate(() => document.querySelector('#app')?.children.length || 0);
|
||||
console.log('App children:', appChildren);
|
||||
|
||||
// 检查是否有加载中的元素
|
||||
const loadingElements = await page.evaluate(() => {
|
||||
const els = document.querySelectorAll('.loading, .el-loading, [class*="loading"]');
|
||||
return els.length;
|
||||
});
|
||||
console.log('Loading elements:', loadingElements);
|
||||
|
||||
await page.screenshot({ path: '/tmp/debug-page.png', fullPage: true });
|
||||
});
|
||||
Reference in New Issue
Block a user