门诊划价->新增按钮报错BUG,叫号语音设置页面开发。

This commit is contained in:
2025-12-30 13:19:01 +08:00
parent 58449fc2f9
commit 5d8e7b667f
8 changed files with 862 additions and 0 deletions

View File

@@ -412,6 +412,12 @@ function getRowDisabled(row) {
// 新增医嘱
function handleAddPrescription() {
// 验证是否已选择患者
if (!props.patientInfo || Object.keys(props.patientInfo).length === 0) {
proxy.$modal.msgWarning('请先选择患者');
return;
}
if (isAdding.value) {
proxy.$modal.msgWarning('请先保存当前医嘱');
return;