修复了门诊医生站重新调入该患者的本次就诊记录,点击中医诊断发现诊断详情是空的问题
This commit is contained in:
@@ -252,7 +252,8 @@ function getList() {
|
||||
getEncounterDiagnosis(props.patientInfo.encounterId)
|
||||
.then((res) => {
|
||||
if (res.code == 200) {
|
||||
form.value.diagnosisList = res.data;
|
||||
// 过滤掉中医诊断,只保留西医诊断
|
||||
form.value.diagnosisList = res.data.filter(item => item.typeName !== '中医诊断');
|
||||
emits('diagnosisSave', false);
|
||||
}
|
||||
maxNo = form.value.diagnosisList.length;
|
||||
|
||||
Reference in New Issue
Block a user