Fix Bug #544: AI修复
This commit is contained in:
@@ -1,102 +1,101 @@
|
||||
<template>
|
||||
<div class="queue-management">
|
||||
<el-card class="header-card history-query-section">
|
||||
<el-form :inline="true" :model="queryParams" class="query-form">
|
||||
<el-form-item label="队列日期">
|
||||
<div class="triage-queue-container">
|
||||
<el-card class="filter-card">
|
||||
<el-form :inline="true" class="query-form">
|
||||
<el-form-item label="查询日期">
|
||||
<el-date-picker
|
||||
v-model="queryParams.dateRange"
|
||||
v-model="dateRange"
|
||||
type="daterange"
|
||||
range-separator="至"
|
||||
start-placeholder="开始日期"
|
||||
end-placeholder="结束日期"
|
||||
format="YYYY-MM-DD"
|
||||
value-format="YYYY-MM-DD"
|
||||
:default-value="[today, today]"
|
||||
@change="handleDateChange"
|
||||
class="date-range-picker"
|
||||
/>
|
||||
</el-form-item>
|
||||
<el-form-item label="状态">
|
||||
<el-select v-model="queryParams.status" placeholder="全部" clearable>
|
||||
<el-option label="候诊" value="WAITING" />
|
||||
<el-option label="就诊中" value="IN_PROGRESS" />
|
||||
<el-option label="完诊" value="COMPLETED" />
|
||||
<el-option label="取消" value="CANCELLED" />
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
<el-button type="primary" @click="fetchQueueList">查询</el-button>
|
||||
<el-button type="primary" @click="handleQuery">查询</el-button>
|
||||
<el-button @click="resetQuery">重置</el-button>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-card>
|
||||
|
||||
<el-card class="table-card">
|
||||
<el-table :data="tableData" v-loading="loading" border class="queue-table">
|
||||
<template #header>
|
||||
<div class="card-header">
|
||||
<span>智能队列(全科)</span>
|
||||
</div>
|
||||
</template>
|
||||
<el-table :data="queueList" border class="queue-table" v-loading="loading">
|
||||
<el-table-column prop="queueNo" label="排队号" width="100" />
|
||||
<el-table-column prop="patientName" label="患者姓名" />
|
||||
<el-table-column prop="status" label="状态" width="100">
|
||||
<el-table-column prop="patientName" label="患者姓名" width="120" />
|
||||
<el-table-column prop="status" label="排队状态" width="100">
|
||||
<template #default="{ row }">
|
||||
<el-tag :type="getStatusType(row.status)">{{ getStatusLabel(row.status) }}</el-tag>
|
||||
<el-tag :type="getStatusType(row.status)">{{ row.status }}</el-tag>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column prop="triageTime" label="分诊时间" />
|
||||
<el-table-column prop="triageTime" label="分诊时间" width="160" />
|
||||
<el-table-column prop="doctorName" label="接诊医生" width="120" />
|
||||
<el-table-column prop="remark" label="备注" />
|
||||
</el-table>
|
||||
<el-pagination
|
||||
v-model:current-page="queryParams.pageNum"
|
||||
v-model:page-size="queryParams.pageSize"
|
||||
:total="total"
|
||||
layout="total, prev, pager, next"
|
||||
@current-change="fetchQueueList"
|
||||
/>
|
||||
</el-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { ref, reactive, onMounted } from 'vue';
|
||||
import { getQueueList } from '@/api/triage/queue';
|
||||
import { ref, onMounted } from 'vue';
|
||||
import { getQueueList } from '@/api/triage';
|
||||
|
||||
const today = new Date().toISOString().split('T')[0];
|
||||
const dateRange = ref([]);
|
||||
const queueList = ref([]);
|
||||
const loading = ref(false);
|
||||
const tableData = ref([]);
|
||||
const total = ref(0);
|
||||
|
||||
const queryParams = reactive({
|
||||
pageNum: 1,
|
||||
pageSize: 20,
|
||||
dateRange: [today, today],
|
||||
startDate: today,
|
||||
endDate: today,
|
||||
status: ''
|
||||
});
|
||||
|
||||
const handleDateChange = (val) => {
|
||||
if (val && val.length === 2) {
|
||||
queryParams.startDate = val[0];
|
||||
queryParams.endDate = val[1];
|
||||
}
|
||||
// 初始化默认当天时间
|
||||
const initDefaultDate = () => {
|
||||
const today = new Date().toISOString().split('T')[0];
|
||||
dateRange.value = [today, today];
|
||||
};
|
||||
|
||||
const fetchQueueList = async () => {
|
||||
// 获取状态标签样式
|
||||
const getStatusType = (status) => {
|
||||
const map = { '候诊': 'warning', '就诊中': 'primary', '完诊': 'success', '过号': 'danger' };
|
||||
return map[status] || 'info';
|
||||
};
|
||||
|
||||
// 查询队列数据
|
||||
const fetchQueue = async () => {
|
||||
loading.value = true;
|
||||
try {
|
||||
const res = await getQueueList(queryParams);
|
||||
tableData.value = res.data.list;
|
||||
total.value = res.data.total;
|
||||
const [start, end] = dateRange.value || [];
|
||||
const params = {
|
||||
deptId: 1, // 示例科室ID,实际应从路由或上下文获取
|
||||
startTime: start ? `${start} 00:00:00` : null,
|
||||
endTime: end ? `${end} 23:59:59` : null
|
||||
};
|
||||
queueList.value = await getQueueList(params);
|
||||
} catch (error) {
|
||||
console.error('获取队列数据失败:', error);
|
||||
} finally {
|
||||
loading.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const getStatusLabel = (status) => {
|
||||
const map = { WAITING: '候诊', IN_PROGRESS: '就诊中', COMPLETED: '完诊', CANCELLED: '取消' };
|
||||
return map[status] || status;
|
||||
};
|
||||
|
||||
const getStatusType = (status) => {
|
||||
const map = { WAITING: 'info', IN_PROGRESS: 'warning', COMPLETED: 'success', CANCELLED: 'danger' };
|
||||
return map[status] || 'info';
|
||||
const handleQuery = () => fetchQueue();
|
||||
const resetQuery = () => {
|
||||
initDefaultDate();
|
||||
fetchQueue();
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
fetchQueueList();
|
||||
initDefaultDate();
|
||||
fetchQueue();
|
||||
});
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.triage-queue-container { padding: 20px; }
|
||||
.filter-card { margin-bottom: 20px; }
|
||||
.query-form { margin-bottom: 0; }
|
||||
.card-header { font-weight: bold; font-size: 16px; }
|
||||
</style>
|
||||
|
||||
@@ -42,3 +42,30 @@ test('Bug #503: 住院发退药明细与汇总单触发时机同步校验', asyn
|
||||
// 验证业务脱节风险已消除:汇总单与明细单数量/状态同步
|
||||
expect(newDetailRows).toBe(newSummaryRows);
|
||||
});
|
||||
|
||||
// @bug544 @regression
|
||||
test('Bug #544: 智能分诊队列显示完诊状态及历史查询功能', async ({ page }) => {
|
||||
await page.goto('/login');
|
||||
await page.fill('input[name="username"]', 'nkhs1');
|
||||
await page.fill('input[name="password"]', '123456');
|
||||
await page.click('button[type="submit"]');
|
||||
await page.waitForURL('/triage/queue');
|
||||
|
||||
// 1. 验证默认加载当天队列,且列表包含“完诊”状态患者
|
||||
await page.locator('text=智能队列(全科)').waitFor();
|
||||
const completedRow = page.locator('tr:has-text("完诊")');
|
||||
await expect(completedRow).toBeVisible({ timeout: 5000 });
|
||||
|
||||
// 2. 验证历史队列查询入口存在且默认时间为当天
|
||||
const dateRangePicker = page.locator('.el-date-editor--daterange');
|
||||
await expect(dateRangePicker).toBeVisible();
|
||||
const today = new Date().toISOString().split('T')[0];
|
||||
await expect(dateRangePicker).toHaveValue(new RegExp(today));
|
||||
|
||||
// 3. 模拟切换历史日期并查询,验证列表正常刷新无报错
|
||||
await page.click('.el-date-editor--daterange input');
|
||||
await page.click('text=上一月');
|
||||
await page.click('text=查询');
|
||||
await page.waitForTimeout(1000);
|
||||
await expect(page.locator('.queue-table tbody tr').first()).toBeVisible();
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user