门诊划价->新增按钮报错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

@@ -70,6 +70,11 @@ watch(
getList();
function getList() {
// 验证是否已选择患者
if (!props.patientInfo || Object.keys(props.patientInfo).length === 0) {
return; // 不执行API调用
}
queryParams.value.organizationId = props.patientInfo.orgId;
getAdviceBaseInfo(queryParams.value).then((res) => {
adviceBaseList.value = res.data.records;