|
|
@ -15,18 +15,21 @@ |
|
|
|
</p> |
|
|
|
<div class="flex"> |
|
|
|
<div class="flex"> |
|
|
|
姓名:<el-input v-model="confirmData.patientName" style="width: 120px" /> |
|
|
|
姓名:<el-input v-model="confirmData.patientName" style="flex: 1" /> |
|
|
|
</div> |
|
|
|
<div class="flex"> |
|
|
|
性别:<el-input v-model="confirmData.patientSex" style="width: 80px" /> |
|
|
|
性别:<el-input v-model="confirmData.patientSex" style="flex: 1" /> |
|
|
|
</div> |
|
|
|
<div class="flex"> |
|
|
|
年龄:<el-input v-model="confirmData.patientAge" style="width: 200px" /> |
|
|
|
年龄:<el-input v-model="confirmData.patientAge" style="flex: 1" /> |
|
|
|
</div> |
|
|
|
<div class="flex"> |
|
|
|
诊断:<el-input v-model="confirmData.diagnose" style="width: 300px" /> |
|
|
|
登记号:<el-input v-model="confirmData.patientId" style="flex: 1" /> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="flex" style="margin-top: 15px"> |
|
|
|
诊断:<el-input v-model="confirmData.diagnose" type="textarea" autosize style="flex: 1" /> |
|
|
|
</div> |
|
|
|
<div class="flex" style="margin-top: 15px"> |
|
|
|
<span style="margin-right: 15px">一、治疗方案:球旁注射治疗</span> |
|
|
|
<div |
|
|
@ -146,6 +149,7 @@ export default { |
|
|
|
patientName: '', |
|
|
|
patientSex: '', |
|
|
|
patientAge: '', |
|
|
|
patientId: '', |
|
|
|
diagnose: '', |
|
|
|
patientSign: '', |
|
|
|
familySign: '', |
|
|
@ -205,6 +209,7 @@ export default { |
|
|
|
this.confirmData.patientName = this.patientDetail.patientName |
|
|
|
this.confirmData.patientAge = this.patientDetail.patientAge |
|
|
|
this.confirmData.patientSex = this.patientDetail.patientSex |
|
|
|
this.confirmData.patientId = this.patientDetail.patientId |
|
|
|
this.queryDiagnostic() |
|
|
|
this.formListValue.injectionPatient = this.confirmData.patientSign |
|
|
|
this.formListValue.injectionKin = this.confirmData.familySign |
|
|
@ -281,7 +286,7 @@ export default { |
|
|
|
} |
|
|
|
::v-deep .el-input__inner{ |
|
|
|
border: none; |
|
|
|
border-bottom: 1px solid #cccccc; |
|
|
|
border-bottom: 1px solid #606266; |
|
|
|
border-radius: 0; |
|
|
|
font-size: 16px; |
|
|
|
height: 26px; |
|
|
@ -290,4 +295,9 @@ export default { |
|
|
|
::v-deep .el-input__prefix{ |
|
|
|
display: none; |
|
|
|
} |
|
|
|
::v-deep .el-textarea__inner{ |
|
|
|
border: none; |
|
|
|
border-bottom: 1px solid #606266; |
|
|
|
border-radius: 0; |
|
|
|
} |
|
|
|
</style> |
|
|
|