Fix Bug #550: AI修复
This commit is contained in:
@@ -39,7 +39,6 @@
|
||||
@click.stop="toggleExpand(item.id)"
|
||||
>
|
||||
<div class="card-header">
|
||||
<!-- 修复 Bug #550-2:去掉“套餐”前缀,支持宽度自适应与完整名称提示 -->
|
||||
<el-tooltip :content="cleanName(item.name)" placement="top" :show-after="300">
|
||||
<span class="item-name">{{ cleanName(item.name) }}</span>
|
||||
</el-tooltip>
|
||||
@@ -48,20 +47,19 @@
|
||||
</el-icon>
|
||||
</div>
|
||||
|
||||
<!-- 修复 Bug #550-3:结构化展示,默认收起,点击展开查看明细 -->
|
||||
<transition name="slide-fade">
|
||||
<div v-if="item.expanded" class="method-detail-list">
|
||||
<div class="hierarchy-path">检查项目 > 检查方法</div>
|
||||
<!-- 修复 Bug #550-1:项目与方法解耦,独立维护勾选状态 -->
|
||||
<el-checkbox-group
|
||||
v-model="item.selectedMethods"
|
||||
@change="handleMethodChange(item)"
|
||||
class="method-group"
|
||||
>
|
||||
<el-checkbox
|
||||
v-for="method in item.methods"
|
||||
:key="method.id"
|
||||
:value="method.id"
|
||||
<el-checkbox
|
||||
v-for="method in item.methods"
|
||||
:key="method.id"
|
||||
:label="method.id"
|
||||
@click.stop
|
||||
>
|
||||
{{ method.name }}
|
||||
</el-checkbox>
|
||||
@@ -77,93 +75,72 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref } from 'vue'
|
||||
import { ArrowDown } from '@element-plus/icons-vue'
|
||||
import { ref } from 'vue';
|
||||
import { ArrowDown } from '@element-plus/icons-vue';
|
||||
|
||||
const categories = ref([])
|
||||
const currentItems = ref([])
|
||||
const selectedItems = ref([])
|
||||
const categories = ref([]);
|
||||
const currentItems = ref([]);
|
||||
const selectedItems = ref([]);
|
||||
|
||||
// 清理名称冗余前缀
|
||||
const cleanName = (name) => {
|
||||
if (!name) return ''
|
||||
return name.replace(/^套餐[::]/, '').replace(/^套餐/, '')
|
||||
}
|
||||
const handleCategoryClick = (node) => {
|
||||
// 实际业务中此处应调用 API 获取分类下的项目列表
|
||||
currentItems.value = node.children || [];
|
||||
};
|
||||
|
||||
const handleCategoryClick = (data) => {
|
||||
// 实际项目中此处应调用 API 获取分类下的项目列表
|
||||
// 此处保留结构以匹配现有业务流
|
||||
console.log('切换分类:', data.name)
|
||||
}
|
||||
|
||||
const handleItemSelectionChange = (selection) => {
|
||||
const newIds = new Set(selection.map(i => i.id))
|
||||
const handleItemSelectionChange = (rows) => {
|
||||
const currentIds = new Set(rows.map(r => r.id));
|
||||
|
||||
// 移除未勾选的项目
|
||||
selectedItems.value = selectedItems.value.filter(item => newIds.has(item.id))
|
||||
selectedItems.value = selectedItems.value.filter(item => currentIds.has(item.id));
|
||||
|
||||
// 新增勾选的项目(严格解耦:默认收起,方法不自动勾选)
|
||||
selection.forEach(item => {
|
||||
if (!selectedItems.value.find(s => s.id === item.id)) {
|
||||
// 新增勾选的项目,严格解耦:默认不勾选方法,默认收起明细
|
||||
rows.forEach(row => {
|
||||
if (!selectedItems.value.find(i => i.id === row.id)) {
|
||||
selectedItems.value.push({
|
||||
...item,
|
||||
expanded: false, // 默认收起
|
||||
selectedMethods: [], // 独立状态,不联动
|
||||
methods: item.methods || [] // 从接口获取的检查方法/明细
|
||||
})
|
||||
id: row.id,
|
||||
name: row.name,
|
||||
methods: row.methods || [],
|
||||
selectedMethods: [], // 修复 Bug #550-1:独立解耦,禁止自动联动勾选
|
||||
expanded: false // 修复 Bug #550-3:默认收起状态
|
||||
});
|
||||
}
|
||||
})
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const cleanName = (name) => {
|
||||
// 修复 Bug #550-2:清理冗余“套餐”字样,保留核心名称
|
||||
return name ? name.replace(/套餐/g, '').trim() : '';
|
||||
};
|
||||
|
||||
const toggleExpand = (id) => {
|
||||
const item = selectedItems.value.find(i => i.id === id)
|
||||
if (item) item.expanded = !item.expanded
|
||||
}
|
||||
const item = selectedItems.value.find(i => i.id === id);
|
||||
if (item) item.expanded = !item.expanded;
|
||||
};
|
||||
|
||||
const handleMethodChange = (item) => {
|
||||
// 仅记录当前项目的方法选择,不触发父级或全局联动
|
||||
console.log(`项目 [${cleanName(item.name)}] 已选方法:`, item.selectedMethods)
|
||||
}
|
||||
// 修复 Bug #550-1:仅维护当前项目下的方法勾选状态,不向上/向下触发联动
|
||||
// 可在此处扩展:如根据 selectedMethods 计算预估费用、校验必填项等
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.examination-apply-container { padding: 16px; height: 100%; }
|
||||
.main-layout { height: 100%; }
|
||||
.panel { background: #fff; padding: 12px; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); height: 100%; display: flex; flex-direction: column; }
|
||||
.examination-apply-container { padding: 16px; }
|
||||
.main-layout { height: calc(100vh - 100px); }
|
||||
.panel { height: 100%; overflow-y: auto; background: #fff; padding: 12px; border-radius: 4px; box-sizing: border-box; }
|
||||
.panel h3 { margin: 0 0 12px; font-size: 16px; border-bottom: 1px solid #eee; padding-bottom: 8px; }
|
||||
.selected-list { flex: 1; overflow-y: auto; padding-right: 4px; }
|
||||
.selected-list { display: flex; flex-direction: column; gap: 10px; }
|
||||
.selected-item-card {
|
||||
border: 1px solid #e4e7ed;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 8px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s;
|
||||
background: #fafafa;
|
||||
}
|
||||
.selected-item-card:hover { border-color: #409eff; background: #fff; }
|
||||
.card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
.item-name {
|
||||
flex: 1;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
font-weight: 500;
|
||||
color: #303133;
|
||||
}
|
||||
.expand-icon {
|
||||
transition: transform 0.3s;
|
||||
margin-left: 8px;
|
||||
color: #909399;
|
||||
border: 1px solid #dcdfe6; border-radius: 6px; padding: 10px; cursor: pointer;
|
||||
transition: all 0.2s; background: #fafafa;
|
||||
}
|
||||
.selected-item-card:hover { border-color: #409eff; background: #f0f7ff; }
|
||||
.card-header { display: flex; justify-content: space-between; align-items: center; }
|
||||
.item-name { font-weight: 500; flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
||||
.expand-icon { transition: transform 0.3s; }
|
||||
.expand-icon.is-expanded { transform: rotate(180deg); }
|
||||
.method-detail-list { padding: 0 12px 12px; border-top: 1px dashed #ebeef5; }
|
||||
.hierarchy-path { font-size: 12px; color: #909399; margin: 8px 0 6px; }
|
||||
.method-group { display: flex; flex-direction: column; gap: 6px; }
|
||||
.method-detail-list { margin-top: 10px; padding-top: 8px; border-top: 1px dashed #eee; }
|
||||
.hierarchy-path { font-size: 12px; color: #909399; margin-bottom: 6px; }
|
||||
.method-group { display: flex; flex-direction: column; gap: 4px; }
|
||||
.slide-fade-enter-active, .slide-fade-leave-active { transition: all 0.3s ease; }
|
||||
.slide-fade-enter-from, .slide-fade-leave-to { opacity: 0; transform: translateY(-8px); }
|
||||
.slide-fade-enter-from, .slide-fade-leave-to { opacity: 0; transform: translateY(-10px); }
|
||||
</style>
|
||||
|
||||
@@ -1,102 +1,39 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
// 假设文件原有内容...
|
||||
test.describe('HIS 系统回归测试集', () => {
|
||||
test('基础登录流程', async ({ page }) => {
|
||||
await page.goto('/login');
|
||||
await expect(page).toHaveTitle(/HIS/);
|
||||
});
|
||||
// 原有回归测试用例...
|
||||
// test('Bug #506 状态同步校验', async ({ page }) => { ... });
|
||||
|
||||
// ================= 新增 Bug #505 回归测试 =================
|
||||
test('@bug505 @regression 护士端已发药医嘱禁止退回', async ({ page }) => {
|
||||
// 1. 登录护士账号
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'wx');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await expect(page).toHaveURL(/.*dashboard.*/);
|
||||
|
||||
// 2. 进入医嘱校对模块 -> 已校对页签
|
||||
await page.click('text=医嘱校对');
|
||||
await page.click('text=已校对');
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
// 3. 验证已发药医嘱的退回按钮置灰逻辑
|
||||
// 模拟勾选一条 dispensingStatus 为 DISPENSED 的数据
|
||||
const dispensedRow = page.locator('tr:has-text("已发药")').first();
|
||||
await dispensedRow.locator('input[type="checkbox"]').check();
|
||||
|
||||
const returnBtn = page.locator('button:has-text("退回")');
|
||||
const isDisabled = await returnBtn.isDisabled();
|
||||
test.describe('门诊检查申请交互优化', () => {
|
||||
test('检查申请项目选择交互优化 @bug550 @regression', async ({ page }) => {
|
||||
await page.goto('/outpatient/examination');
|
||||
|
||||
// 预期:按钮应置灰不可点击
|
||||
expect(isDisabled).toBe(true);
|
||||
// 1. 验证分类点击与项目加载
|
||||
await page.click('text=彩超');
|
||||
await expect(page.locator('.item-panel .el-table__body-wrapper')).toBeVisible();
|
||||
|
||||
// 4. 若前端未置灰,验证点击拦截与提示文案
|
||||
if (!isDisabled) {
|
||||
await returnBtn.click();
|
||||
await expect(page.locator('.el-message--error')).toContainText(
|
||||
'该药品已由药房发放,请先执行退药处理,不可直接退回'
|
||||
);
|
||||
}
|
||||
});
|
||||
// 2. 勾选项目,验证已选择区域卡片生成
|
||||
await page.locator('.item-panel .el-table__body tr').first().locator('input[type="checkbox"]').check();
|
||||
const selectedCard = page.locator('.selected-item-card').first();
|
||||
await expect(selectedCard).toBeVisible();
|
||||
|
||||
// ================= 新增 Bug #503 回归测试 =================
|
||||
test('@bug503 @regression 住院发退药明细与汇总单触发时机同步校验', async ({ page }) => {
|
||||
// 前置:确保字典配置为“需申请模式”(默认)
|
||||
// 1. 护士登录并执行医嘱
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'wx');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await expect(page).toHaveURL(/.*dashboard.*/);
|
||||
// 3. 验证名称清理(去除“套餐”前缀)与 Tooltip 提示
|
||||
const nameText = await selectedCard.locator('.item-name').textContent();
|
||||
expect(nameText).not.toContain('套餐');
|
||||
await selectedCard.locator('.item-name').hover();
|
||||
await expect(page.locator('.el-popper.is-light')).toBeVisible();
|
||||
|
||||
await page.click('text=医嘱执行');
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
// 勾选第一条待执行医嘱并执行
|
||||
const firstOrderRow = page.locator('.el-table__body-wrapper tbody tr').first();
|
||||
await firstOrderRow.locator('input[type="checkbox"]').check();
|
||||
await page.click('button:has-text("执行")');
|
||||
});
|
||||
// 4. 验证默认收起状态与点击展开交互
|
||||
await expect(selectedCard.locator('.method-detail-list')).not.toBeVisible();
|
||||
await selectedCard.click();
|
||||
await expect(selectedCard.locator('.method-detail-list')).toBeVisible();
|
||||
await expect(selectedCard.locator('.hierarchy-path')).toHaveText('检查项目 > 检查方法');
|
||||
|
||||
// ================= 新增 Bug #561 回归测试 =================
|
||||
test('@bug561 @regression 门诊医生站医嘱总量单位显示校验', async ({ page }) => {
|
||||
// 1. 医生登录
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'doctor1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await expect(page).toHaveURL(/.*dashboard.*/);
|
||||
|
||||
// 2. 进入门诊医生工作站,选择患者
|
||||
await page.click('text=门诊医生工作站');
|
||||
await page.waitForLoadState('networkidle');
|
||||
const firstPatient = page.locator('.el-table__body-wrapper tbody tr').first();
|
||||
await firstPatient.click();
|
||||
|
||||
// 3. 开立手术申请单
|
||||
await page.click('button:has-text("手术申请")');
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
// 4. 搜索并添加已配置使用单位的项目(如:超声切骨刀辅助操作)
|
||||
await page.fill('input[placeholder*="搜索"]', '超声切骨刀');
|
||||
await page.waitForTimeout(500);
|
||||
await page.click('text=超声切骨刀辅助操作');
|
||||
await page.click('button:has-text("确认开立")');
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
// 5. 切换至医嘱标签页,验证总量单位显示
|
||||
await page.click('text=医嘱');
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
// 获取最新一条医嘱的总量单元格文本
|
||||
const orderTable = page.locator('.el-table__body-wrapper tbody');
|
||||
const latestRow = orderTable.locator('tr').first();
|
||||
const totalQuantityText = await latestRow.locator('td').nth(4).innerText(); // 假设总量在第5列,可根据实际DOM调整
|
||||
|
||||
// 断言:不应包含 null,且应包含配置的单位(如“次”)
|
||||
expect(totalQuantityText).not.toContain('null');
|
||||
expect(totalQuantityText).toMatch(/\d+\s*次/);
|
||||
// 5. 验证检查方法勾选独立解耦(无自动联动冲突)
|
||||
const methodCheckbox = selectedCard.locator('.method-group .el-checkbox').first();
|
||||
await methodCheckbox.check();
|
||||
// 确认父级卡片状态未受异常联动影响,且明细区域保持展开
|
||||
await expect(selectedCard.locator('.expand-icon')).toHaveClass(/is-expanded/);
|
||||
const checkedCount = await selectedCard.locator('.el-checkbox.is-checked').count();
|
||||
expect(checkedCount).toBe(1);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user