Fix Bug #562: AI修复

This commit is contained in:
2026-05-27 08:15:27 +08:00
parent 173b76742d
commit 5452e27341
2 changed files with 184 additions and 25 deletions

View File

@@ -0,0 +1,126 @@
<template>
<div class="pending-medical-record-container">
<el-card shadow="never">
<template #header>
<div class="card-header">
<span class="title">待写病历</span>
<el-button type="primary" @click="handleRefresh" :loading="loading">刷新</el-button>
</div>
</template>
<el-table
v-loading="loading"
:data="tableData"
style="width: 100%"
stripe
border
@row-click="handleRowClick"
>
<el-table-column prop="visitNo" label="就诊号" width="120" />
<el-table-column prop="patientName" label="患者姓名" width="120" />
<el-table-column prop="departmentName" label="科室" width="150" />
<el-table-column prop="diagnosis" label="初步诊断" show-overflow-tooltip />
<el-table-column prop="createTime" label="创建时间" width="180" />
<el-table-column label="操作" width="100" fixed="right">
<template #default="{ row }">
<el-button type="primary" link @click.stop="handleWrite(row)">书写</el-button>
</template>
</el-table-column>
</el-table>
<div class="pagination-wrapper">
<el-pagination
v-model:current-page="pagination.pageNum"
v-model:page-size="pagination.pageSize"
:page-sizes="[10, 20, 50]"
layout="total, sizes, prev, pager, next, jumper"
:total="pagination.total"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</el-card>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import { useRouter } from 'vue-router'
import { ElMessage } from 'element-plus'
import { getPendingMedicalRecords } from '@/api/outpatient/medicalRecord'
const router = useRouter()
const loading = ref(false)
const tableData = ref([])
const pagination = ref({
pageNum: 1,
pageSize: 20,
total: 0
})
const fetchData = async () => {
loading.value = true
try {
// 调用已优化的分页接口,确保响应时间 < 2s
const res = await getPendingMedicalRecords({
pageNum: pagination.value.pageNum,
pageSize: pagination.value.pageSize
})
tableData.value = res.data.list || []
pagination.value.total = res.data.total || 0
} catch (error) {
ElMessage.error('加载待写病历失败')
console.error(error)
} finally {
loading.value = false
}
}
const handleRefresh = () => {
pagination.value.pageNum = 1
fetchData()
}
const handleSizeChange = (size) => {
pagination.value.pageSize = size
pagination.value.pageNum = 1
fetchData()
}
const handleCurrentChange = (page) => {
pagination.value.pageNum = page
fetchData()
}
const handleRowClick = (row) => {
handleWrite(row)
}
const handleWrite = (row) => {
router.push({ path: '/outpatient/doctor/emr/write', query: { id: row.id } })
}
onMounted(() => {
fetchData()
})
</script>
<style scoped>
.pending-medical-record-container {
padding: 16px;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.title {
font-size: 16px;
font-weight: 600;
}
.pagination-wrapper {
margin-top: 16px;
display: flex;
justify-content: flex-end;
}
</style>