This commit is contained in:
Your Name
2026-03-19 12:19:00 +08:00
parent 7832514f28
commit 7147c8e148
243 changed files with 1662 additions and 437 deletions
+5 -5
View File
@@ -193,7 +193,7 @@
size="small"
@click="handleViewCase(row)"
>
</el-button>
<template v-if="row.status === 1">
<el-button
@@ -911,7 +911,7 @@ const handleMiniProgramQRCode = async (row: any) => {
}
}
// 处方保存成功(刷新列表,并刷新编辑抽屉中的病列表)
// 处方保存成功(刷新列表,并刷新编辑抽屉中的病列表)
const onPrescriptionSuccess = () => {
loadData()
editRef.value?.refreshCaseList?.()
@@ -926,7 +926,7 @@ const handlePrescription = (row: any) => {
prescriptionRef.value?.open(row)
}
// 查看病(开方后显示)
// 查看病(开方后显示)
const handleViewCase = async (row: any) => {
if (!row.id) {
feedback.msgWarning('预约信息不完整')
@@ -937,10 +937,10 @@ const handleViewCase = async (row: any) => {
if (prescription?.id) {
prescriptionRef.value?.openById(prescription.id)
} else {
feedback.msgWarning('该预约暂无病记录,请先开方')
feedback.msgWarning('该预约暂无病记录,请先开方')
}
} catch (error: any) {
feedback.msgError(error?.msg || '获取病失败')
feedback.msgError(error?.msg || '获取病失败')
}
}