|
|
@ -13,7 +13,7 @@ |
|
|
|
验光报告单 |
|
|
|
</p> |
|
|
|
<div style="display: flex;justify-content: space-around"> |
|
|
|
<span class="bold">登记号:<el-input v-model="dataForm.patientId" style="width: 80px" placeholder="" /></span> |
|
|
|
<span class="bold">登记号:<el-input v-model="dataForm.patientId" style="width: 95px" placeholder="" /></span> |
|
|
|
<span class="bold">姓名:<el-input v-model="dataForm.patientName" style="width: 90px" placeholder="" /></span> |
|
|
|
<span class="bold">性别:<el-input v-model="dataForm.patientSex" style="width: 60px" placeholder="" /></span> |
|
|
|
<span class="bold">年龄:<el-input v-model="dataForm.patientAge" style="width: 60px" placeholder="" /></span> |
|
|
@ -537,6 +537,14 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
watch: { |
|
|
|
caseId: { |
|
|
|
handler: function(newV, oldV) { |
|
|
|
this.queryForm() |
|
|
|
this.initWebSoket() |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
beforeUnmount() { |
|
|
|
clearTimeout(this.timeoutObj) |
|
|
|
clearTimeout(this.serverTimeoutObj) |
|
|
@ -978,6 +986,12 @@ export default { |
|
|
|
margin-right: 5px; |
|
|
|
} |
|
|
|
} |
|
|
|
.el-input__inner { |
|
|
|
padding: 0; |
|
|
|
border: none; |
|
|
|
text-align: center; |
|
|
|
border-bottom: 1px solid #8e8c8c; |
|
|
|
} |
|
|
|
.bold{ |
|
|
|
font-weight: 700; |
|
|
|
} |
|
|
|