tijiao
This commit is contained in:
@@ -850,30 +850,30 @@ export default {
|
||||
this.record = {
|
||||
information: data.information
|
||||
? data.information
|
||||
: recordData.information,
|
||||
: this.recordData.information,
|
||||
chiefComplaint: data.chiefComplaint
|
||||
? data.chiefComplaint
|
||||
: recordData.chiefComplaint,
|
||||
: this.recordData.chiefComplaint,
|
||||
historyOfPresentIllness: data.historyOfPresentIllness
|
||||
? data.historyOfPresentIllness
|
||||
: recordData.historyOfPresentIllness,
|
||||
: this.recordData.historyOfPresentIllness,
|
||||
pastHistory: data.pastHistory
|
||||
? data.pastHistory
|
||||
: recordData.pastHistory,
|
||||
: this.recordData.pastHistory,
|
||||
|
||||
personalAndFamilyHistory: data.personalAndFamilyHistory
|
||||
? data.personalAndFamilyHistory
|
||||
: recordData.personalAndFamilyHistory,
|
||||
: this.recordData.personalAndFamilyHistory,
|
||||
physicaExamination: data.physicaExamination
|
||||
? data.physicaExamination
|
||||
: recordData.physicaExamination,
|
||||
diagnosis: data.diagnosis ? data.diagnosis : recordData.diagnosis,
|
||||
: this.recordData.physicaExamination,
|
||||
diagnosis: data.diagnosis ? data.diagnosis : this.recordData.diagnosis,
|
||||
treatmentPlan: data.treatmentPlan
|
||||
? data.treatmentPlan
|
||||
: recordData.treatmentPlan,
|
||||
: this.recordData.treatmentPlan,
|
||||
other: data.other
|
||||
? data.other
|
||||
: recordData.other,
|
||||
: this.recordData.other,
|
||||
};
|
||||
for (const key in this.record) {
|
||||
this.$set(this.editableMap, key, this.getInnerHtml(this.record[key]));
|
||||
|
||||
Reference in New Issue
Block a user