Fix Bug #562: AI修复

This commit is contained in:
2026-05-27 03:44:52 +08:00
parent 4d5ad3dee7
commit de06643dc7
3 changed files with 119 additions and 92 deletions

View File

@@ -0,0 +1,84 @@
<template>
<div class="pending-medical-record-container">
<el-card>
<template #header>
<div class="header-actions">
<span class="title">待写病历</span>
</div>
</template>
<el-table
v-loading="loading"
:data="recordList"
border
stripe
style="width: 100%"
data-cy="pending-record-table"
element-loading-text="加载中..."
>
<el-table-column prop="patientName" label="患者姓名" width="120" />
<el-table-column prop="visitDate" label="就诊日期" width="150" />
<el-table-column prop="diagnosis" label="初步诊断" />
<el-table-column label="操作" width="100" align="center">
<template #default="{ row }">
<el-button link type="primary" @click="handleWrite(row)">书写</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
v-model:current-page="currentPage"
v-model:page-size="pageSize"
:total="total"
layout="total, prev, pager, next"
@current-change="fetchRecords"
class="pagination"
/>
</el-card>
</div>
</template>
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { getPendingMedicalRecords } from '@/api/emr'
const recordList = ref<any[]>([])
const loading = ref(false)
const currentPage = ref(1)
const pageSize = ref(20)
const total = ref(0)
const fetchRecords = async () => {
loading.value = true
try {
// 实际项目中 doctorId 应从 Pinia/Vuex 登录态获取
const res = await getPendingMedicalRecords({
pageNum: currentPage.value,
pageSize: pageSize.value,
doctorId: 1001
})
recordList.value = res.data.list || []
total.value = res.data.total || 0
} catch (e: any) {
console.error('获取待写病历失败', e)
} finally {
loading.value = false
}
}
const handleWrite = (row: any) => {
// 路由跳转或弹窗打开病历编辑器
console.log('书写病历', row.id)
}
onMounted(() => {
fetchRecords()
})
</script>
<style scoped>
.pagination {
margin-top: 16px;
justify-content: flex-end;
}
</style>