|
@ -179,7 +179,7 @@
|
|
|
<td class="col-w120 c-t-center">体  温</td>
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.temperature" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.temperature" placeholder="" type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">°C</div>
|
|
|
</td>
|
|
@ -225,14 +225,14 @@
|
|
|
<td class="col-w120 c-t-center">身  高</td>
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.height" placeholder="" type="number"></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.height" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">cm</div>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center" style="border-right: 0;">体  重</td>
|
|
|
<td class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.weight" placeholder="" type="number"></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.weight" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">kg</div>
|
|
|
</td>
|
|
@ -242,7 +242,7 @@
|
|
|
<td>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.waistline" placeholder="" type="number"></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.waistline" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">cm</div>
|
|
|
</div>
|
|
@ -251,7 +251,7 @@
|
|
|
<td style="border: 0;">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.bmi" placeholder="" type="number"></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.bmi" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">kg/m²</div>
|
|
|
</div>
|
|
@ -325,14 +325,14 @@
|
|
|
<td class="col-w120 c-t-center">每次锻炼时间</td>
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.exercise_time" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.exercise_time" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0 lh27">分钟</div>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">坚持锻炼时间</td>
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.sustain_exercise_time" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.sustain_exercise_time" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0 lh27">年</div>
|
|
|
</td>
|
|
@ -379,7 +379,7 @@
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 lh27">平均</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.smoking_daily" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.smoking_daily" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0 lh27">次</div>
|
|
|
</div>
|
|
@ -396,7 +396,7 @@
|
|
|
<td class="col-w120 c-t-center">戒烟年龄</td>
|
|
|
<td class="ui-grid" style="border: 0; border-right:1px soild #ddd;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.stop_smoking_age" placeholder="" min="0"></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.stop_smoking_age" placeholder="" min="0" type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</td>
|
|
@ -446,7 +446,7 @@
|
|
|
<td class="col-w120 c-t-center">开始饮酒年龄</td>
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.start_drinking_age" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.start_drinking_age" placeholder="" type="number" min=0></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</td>
|
|
@ -661,13 +661,13 @@
|
|
|
<td colspan="4">
|
|
|
<div class="setinput">
|
|
|
左眼
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.left_eyesight" clearable></el-input>
|
|
|
<el-input style="width: 100px;" :readonly="!editable" min=0 v-model="oldmanData.left_eyesight" type="number"></el-input>
|
|
|
右眼
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.right_eyesight" clearable></el-input>
|
|
|
<el-input style="width: 100px;" :readonly="!editable" min=0 v-model="oldmanData.right_eyesight" type="number"></el-input>
|
|
|
(矫正视力:左眼
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.left_correctional_eyesight" clearable></el-input>
|
|
|
<el-input style="width: 100px;" :readonly="!editable" min=0 v-model="oldmanData.left_correctional_eyesight" type="number"></el-input>
|
|
|
右眼
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.right_correctional_eyesight" clearable></el-input>
|
|
|
<el-input style="width: 100px;" :readonly="!editable" min=0 v-model="oldmanData.right_correctional_eyesight" type="number"></el-input>
|
|
|
)
|
|
|
</div>
|
|
|
</td>
|
|
@ -813,7 +813,7 @@
|
|
|
<div class="setinput ui-grid">
|
|
|
<div>
|
|
|
心率:
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.heart_rhythm" placeholder="" clearable></el-input>
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.heart_rhythm" placeholder="" type="number" min=0></el-input>
|
|
|
次/分钟 
|
|
|
|
|
|
</div>
|
|
@ -1088,8 +1088,8 @@
|
|
|
空腹血糖
|
|
|
</td>
|
|
|
<td colspan="4" class="setinput">
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.fasting_blood_glucose_L" placeholder="" clearable></el-input>mmol/L 或
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.fasting_blood_glucose_dL" placeholder="" clearable></el-input>mg/dL
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.fasting_blood_glucose_L" placeholder="" type="number" min=0></el-input>mmol/L 或
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.fasting_blood_glucose_dL" placeholder="" type="number" min=0></el-input>mg/dL
|
|
|
|
|
|
</td>
|
|
|
</tr>
|
|
@ -1937,7 +1937,7 @@
|
|
|
<el-checkbox label="3"> 饮食 </el-checkbox>
|
|
|
<el-checkbox label="4"> 锻炼 </el-checkbox>
|
|
|
<el-checkbox label="5" class="setinput"> 减体重(目标
|
|
|
<el-input style="width: 70px;" type="number" :readonly="goal_weight_dis||!editable" v-model="oldmanData.goal_weight"></el-input>
|
|
|
<el-input style="width: 70px;" type="number" :readonly="goal_weight_dis||!editable" v-model="oldmanData.goal_weight" min=0></el-input>
|
|
|
Kg)</el-checkbox>
|
|
|
<el-checkbox label="6">建议接种疫苗 </el-checkbox>
|
|
|
<el-checkbox label="7" class="setinput">其他
|