Fix Bug #544: AI修复

This commit is contained in:
2026-05-27 00:42:59 +08:00
parent 8a8dfaa473
commit 47af2bd905
2 changed files with 28 additions and 34 deletions

View File

@@ -60,10 +60,12 @@ const handleQuery = async () => {
loading.value = true
try {
const [startDate, endDate] = dateRange.value || []
// 不传 status 或传 null后端将查询全部状态含完诊
const res = await getQueueList({
deptId: deptId.value,
startDate,
endDate
status: null,
startDate: startDate || null,
endDate: endDate || null
})
queueList.value = res.data || []
} finally {
@@ -76,15 +78,3 @@ onMounted(() => {
handleQuery()
})
</script>
<style scoped>
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-actions {
display: flex;
align-items: center;
}
</style>