This commit is contained in:
2025-08-08 13:55:07 +08:00
parent 6f4f269bdb
commit 81ab9bd64a

View File

@@ -422,6 +422,7 @@ export default {
physicaExamination: "<h1>体格检查</h1>", physicaExamination: "<h1>体格检查</h1>",
diagnosis: "<h1>诊断</h1>", diagnosis: "<h1>诊断</h1>",
treatmentPlan: "<h1>治疗和后续治疗</h1>", treatmentPlan: "<h1>治疗和后续治疗</h1>",
other: "<h1>其他</h1>",
}, },
editableMap: {}, editableMap: {},
}; };
@@ -870,6 +871,9 @@ export default {
treatmentPlan: data.treatmentPlan treatmentPlan: data.treatmentPlan
? data.treatmentPlan ? data.treatmentPlan
: recordData.treatmentPlan, : recordData.treatmentPlan,
other: data.other
? data.other
: recordData.other,
}; };
for (const key in this.record) { for (const key in this.record) {
this.$set(this.editableMap, key, this.getInnerHtml(this.record[key])); this.$set(this.editableMap, key, this.getInnerHtml(this.record[key]));