|
|
@ -13,6 +13,23 @@ |
|
|
|
<p style="color:#000000;font-size:32px;margin:0 0 30px 0;text-align:center;"> |
|
|
|
前房穿刺知情同意书 |
|
|
|
</p> |
|
|
|
<div class="flex a-c j-b"> |
|
|
|
<div> |
|
|
|
姓名:<el-input v-model="confirmData.patientName" style="width: 100px" /> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
性别:<el-input v-model="confirmData.patientSex" style="width: 100px" /> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
年龄:<el-input v-model="confirmData.patientAge" style="width: 100px" /> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
科室:<el-input v-model="confirmData.department" style="width: 100px" /> |
|
|
|
</div> |
|
|
|
<div> |
|
|
|
登记号:<el-input v-model="confirmData.patientId" style="width: 100px" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="form_content"> |
|
|
|
<div v-for="(item,index) in content" :key="index" style="margin: 5px 0"> |
|
|
|
<span style="font-weight: bold">{{ item.title }}</span> |
|
|
@ -178,6 +195,11 @@ export default { |
|
|
|
formId: '', |
|
|
|
sourceData: {}, |
|
|
|
confirmData: { |
|
|
|
patientName: '', |
|
|
|
patientAge: '', |
|
|
|
patientId: '', |
|
|
|
patientSex: '', |
|
|
|
department: '眼科', |
|
|
|
illness: '', |
|
|
|
narcotize: '', |
|
|
|
operation: '', |
|
|
@ -223,6 +245,10 @@ export default { |
|
|
|
this.confirmData.operate3Date = date |
|
|
|
const userData = JSON.parse(window.sessionStorage.getItem('qg-userData')) |
|
|
|
this.confirmData.operator = userData.signImgBase |
|
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
|
this.confirmData.patientAge = this.patientDetail.patientAge |
|
|
|
this.confirmData.patientSex = this.patientDetail.patientSex |
|
|
|
this.confirmData.patientId = this.patientDetail.patientId |
|
|
|
}, |
|
|
|
async getformList() { |
|
|
|
const { data: res } = await this.$http.get('/case/getCaseById', { |
|
|
|