|
|
@ -55,7 +55,7 @@ |
|
|
|
<input :checked="form.eyeType==='OU'" type="radio">OU |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
<el-col :span="12" style="display: flex;align-items: center"> |
|
|
|
<el-col :span="6" style="display: flex;align-items: center"> |
|
|
|
散瞳: |
|
|
|
<div class="radioItem" @click="form.pupilDilate='Y'"> |
|
|
|
<input :checked="form.pupilDilate==='Y'" type="radio">是 |
|
|
@ -64,10 +64,8 @@ |
|
|
|
<input :checked="form.pupilDilate==='N'" type="radio">否 |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
</div> |
|
|
|
<div style="display: flex;padding:0 0 20px 0px"> |
|
|
|
<el-col :span="12" style="display: flex;align-items: center"> |
|
|
|
<div class="addLabel">缩瞳:</div> |
|
|
|
<el-col :span="6" style="display: flex;align-items: center"> |
|
|
|
缩瞳: |
|
|
|
<div class="radioItem" @click="form.pupilShrink='Y'"> |
|
|
|
<input :checked="form.pupilShrink==='Y'" type="radio">是 |
|
|
|
</div> |
|
|
@ -75,8 +73,10 @@ |
|
|
|
<input :checked="form.pupilShrink==='N'" type="radio">否 |
|
|
|
</div> |
|
|
|
</el-col> |
|
|
|
</div> |
|
|
|
<div style="display: flex;padding:0 0 20px 0px"> |
|
|
|
<el-col :span="12" style="display: flex;align-items: center"> |
|
|
|
三面镜: |
|
|
|
<div class="addLabel">三面镜:</div> |
|
|
|
<div class="radioItem" @click="form.threeMirror='Y'"> |
|
|
|
<input :checked="form.threeMirror==='Y'" type="radio">是 |
|
|
|
</div> |
|
|
@ -148,6 +148,7 @@ export default { |
|
|
|
eyeType: '', |
|
|
|
pupilDilate: '', |
|
|
|
pupilShrink: '', |
|
|
|
threeMirror: '', |
|
|
|
date1: '', |
|
|
|
date2: '' |
|
|
|
}, |
|
|
|