|
|
@ -14,11 +14,11 @@ |
|
|
|
眼科激光手术患者知情同意书 |
|
|
|
</p> |
|
|
|
<!--患者信息--> |
|
|
|
<div v-if="formData.patient" class="flex"> |
|
|
|
<div class="flex a-c item">姓名:<el-input v-model="formData.patient.patientName" style="flex: 1" placeholder="" /></div> |
|
|
|
<div class="flex a-c item">年龄:<el-input v-model="formData.patient.age" style="flex: 1" placeholder="" />岁</div> |
|
|
|
<div class="flex a-c item">性别:<el-input v-model="formData.patient.sex" style="flex: 1" placeholder="" /></div> |
|
|
|
<div class="flex a-c item">眼别:<el-input v-model="formData.patient.eyeLevel" style="flex: 1" placeholder="" /></div> |
|
|
|
<div class="flex"> |
|
|
|
<div class="flex a-c item">姓名:<el-input v-model="formData.patientName" style="flex: 1" placeholder="" /></div> |
|
|
|
<div class="flex a-c item">年龄:<el-input v-model="formData.patientAge" style="flex: 1" placeholder="" />岁</div> |
|
|
|
<div class="flex a-c item">性别:<el-input v-model="formData.patientSex" style="flex: 1" placeholder="" /></div> |
|
|
|
<div class="flex a-c item">眼别:<el-input v-model="formData.patientEyeLevel" style="flex: 1" placeholder="" /></div> |
|
|
|
</div> |
|
|
|
<!--术前判断--> |
|
|
|
<div> |
|
|
@ -73,7 +73,7 @@ |
|
|
|
<!-- 术中可能发生的并发症及处理--> |
|
|
|
<div> |
|
|
|
<div class="formTitle">四、术中可能发生的并发症及处理:</div> |
|
|
|
<div v-for="(item,index) in formData.intraoperation" :key="index"> |
|
|
|
<div v-for="(item,index) in intraoperation" :key="index"> |
|
|
|
{{ `${index+1}. ${item}` }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -86,14 +86,14 @@ |
|
|
|
<div> |
|
|
|
<div class="formTitle">六、术后可能发生下列并发症</div> |
|
|
|
<div class="proposed"> |
|
|
|
<div v-for="(post,idx) in formData.postoperative" :key="idx" class="postItem" style="margin-right: 30px"> |
|
|
|
<div v-for="(post,idx) in postoperative" :key="idx" class="postItem" style="margin-right: 30px"> |
|
|
|
{{ `${idx+1},${post}` }} |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div v-if="formData.doctor" class="btnBox"> |
|
|
|
<div class="btnBox"> |
|
|
|
<div> |
|
|
|
<div class="flex a-c">主诊/谈话医生签名:<el-input v-model="formData.doctor.name" style="flex: 1" /></div> |
|
|
|
<div class="flex a-c">日期:<el-input v-model="formData.doctor.dateTime" style="flex: 1" /></div> |
|
|
|
<div class="flex a-c">主诊/谈话医生签名:<el-input v-model="formData.doctorSign" style="flex: 1" /></div> |
|
|
|
<div class="flex a-c">日期:<el-input v-model="formData.docDate" style="flex: 1" /></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -104,9 +104,9 @@ |
|
|
|
医生已和我详细讨论了治疗计划、手术方式、治疗目的以及术后可能的效果。我已详细阅读以上内容,并完全理解和接受手术可能出现的风险和并发症,我同意医生的治疗并接受手术。 |
|
|
|
</div> |
|
|
|
<div class="btnBox"> |
|
|
|
<div v-if="formData.patientInfo"> |
|
|
|
<div class="flex a-c">患者或直系亲属签名:<el-input v-model="formData.patientInfo.name" style="flex: 1" /></div> |
|
|
|
<div class="flex a-c">日期:<el-input v-model="formData.patientInfo.dateTime" style="flex: 1" /></div> |
|
|
|
<div> |
|
|
|
<div class="flex a-c">患者或直系亲属签名:<el-input v-model="formData.patientSign" style="flex: 1" /></div> |
|
|
|
<div class="flex a-c">日期:<el-input v-model="formData.patientDate" style="flex: 1" /></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
@ -135,21 +135,15 @@ export default { |
|
|
|
originalData: {}, |
|
|
|
formData: { |
|
|
|
// 患者信息 |
|
|
|
patient: { |
|
|
|
patientName: '', |
|
|
|
age: '', |
|
|
|
sex: '', |
|
|
|
eyeLevel: '' |
|
|
|
}, |
|
|
|
patientName: '', |
|
|
|
patientAge: '', |
|
|
|
patientSex: '', |
|
|
|
patientEyeLevel: '', |
|
|
|
// 主诊医生 |
|
|
|
doctor: { |
|
|
|
name: '', |
|
|
|
dateTime: '' |
|
|
|
}, |
|
|
|
patientInfo: { |
|
|
|
name: '', |
|
|
|
dateTime: '' |
|
|
|
}, |
|
|
|
doctorSign: '', |
|
|
|
docDate: '', |
|
|
|
patientSign: '', |
|
|
|
patientDate: '', |
|
|
|
// 术前判断 |
|
|
|
judgement: [ |
|
|
|
{ |
|
|
@ -295,11 +289,11 @@ export default { |
|
|
|
name: '其他', |
|
|
|
isSelected: false |
|
|
|
} |
|
|
|
], |
|
|
|
// 术中 |
|
|
|
intraoperation: ['麻醉意外:需进行抢救或暂停手术', '出血:需要压迫止血,推迟或暂停手术', '其他无法预计的并发症', '术中可能会根据具体情况变更手术方式'], |
|
|
|
postoperative: ['暂时性眼压升高', '损伤人工晶体', '角膜内皮损伤', '虹膜炎症反应', '玻璃体前界膜破裂', '视功能损伤', '渗出性视网膜脱离', '黄斑水肿', '脉络膜脱离', '虹膜(视网膜、脉络膜)出血', '其他'] |
|
|
|
} |
|
|
|
] |
|
|
|
}, |
|
|
|
// 术中 |
|
|
|
intraoperation: ['麻醉意外:需进行抢救或暂停手术', '出血:需要压迫止血,推迟或暂停手术', '其他无法预计的并发症', '术中可能会根据具体情况变更手术方式'], |
|
|
|
postoperative: ['暂时性眼压升高', '损伤人工晶体', '角膜内皮损伤', '虹膜炎症反应', '玻璃体前界膜破裂', '视功能损伤', '渗出性视网膜脱离', '黄斑水肿', '脉络膜脱离', '虹膜(视网膜、脉络膜)出血', '其他'] |
|
|
|
} |
|
|
|
}, |
|
|
|
watch: { |
|
|
@ -315,9 +309,9 @@ export default { |
|
|
|
this.originalData = JSON.parse(JSON.stringify(this.formData)) |
|
|
|
console.log(this.patientDetail) |
|
|
|
// 患者信息带入 |
|
|
|
this.formData.patient.patientName = this.patientDetail.patientName |
|
|
|
this.formData.patient.age = this.patientDetail.patientAge |
|
|
|
this.formData.patient.sex = this.patientDetail.patientSex |
|
|
|
this.formData.patientName = this.patientDetail.patientName |
|
|
|
this.formData.patientAge = this.patientDetail.patientAge |
|
|
|
this.formData.patientSex = this.patientDetail.patientSex |
|
|
|
if (this.jsonText) { |
|
|
|
this.formData = JSON.parse(this.jsonText) |
|
|
|
} |
|
|
@ -342,6 +336,7 @@ export default { |
|
|
|
cursor: pointer; |
|
|
|
user-select: none; |
|
|
|
display: flex; |
|
|
|
margin-right: 0 !important; |
|
|
|
input{ |
|
|
|
-webkit-appearance: checkbox !important; |
|
|
|
margin-right: 5px; |
|
|
|