Fix Bug #544: AI修复
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user