|
@ -18,6 +18,20 @@
|
|
|
<link href="../../../../plugins/toastr/toastr.min.css" rel="stylesheet">
|
|
|
<link href="../css/fangshi-detail.css" rel="stylesheet">
|
|
|
<style>
|
|
|
.flex-box {
|
|
|
display: -webkit-box;
|
|
|
display: -ms-flexbox;
|
|
|
display: flex;
|
|
|
-webkit-box-pack: center;
|
|
|
-ms-flex-pack: center;
|
|
|
-webkit-box-align: center;
|
|
|
-ms-flex-align: center;
|
|
|
}
|
|
|
|
|
|
.setPicker .el-input--prefix .el-input__inner {
|
|
|
text-align: center
|
|
|
}
|
|
|
|
|
|
.p8 {
|
|
|
padding: 8px;
|
|
|
}
|
|
@ -30,6 +44,10 @@
|
|
|
width: 130px;
|
|
|
}
|
|
|
|
|
|
.col-w200 {
|
|
|
width: 200px;
|
|
|
}
|
|
|
|
|
|
.mb0 {
|
|
|
margin-bottom: 0;
|
|
|
}
|
|
@ -59,12 +77,21 @@
|
|
|
.lh27 {
|
|
|
line-height: 27px !important;
|
|
|
}
|
|
|
|
|
|
.setinput .el-input__inner {
|
|
|
padding: 0;
|
|
|
border-bottom: 1px solid #e1e1e1;
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
</style>
|
|
|
</head>
|
|
|
|
|
|
<body>
|
|
|
<div id="app">
|
|
|
<button class="button" @click="editBtn()">编辑</button>
|
|
|
<finish-followup-btn :followupId="followupId" :finishedBtn="finishedBtn" v-on:getfinish="getFinishfChild($event)"></finish-followup-btn>
|
|
|
<p class="c-f20 mb10" style="text-align: center;">健康体检表</p>
|
|
|
<div class="ui-grid p10">
|
|
|
<div class="ui-col-1">
|
|
|
<div class="ui-grid">
|
|
@ -78,8 +105,7 @@
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 lh27">身份证:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input onkeypress="return event.keyCode>=48&&event.keyCode<=57" :readonly="!editable" v-model="oldmanData.idcard" placeholder=""
|
|
|
clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.idcard" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@ -95,9 +121,9 @@
|
|
|
</div>
|
|
|
<table class="table table-bordered mb0">
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">体检日期</td>
|
|
|
<td class="c-t-center">体检日期</td>
|
|
|
<td>
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.duty" type="date" placeholder="选择日期">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.duty" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">责任医生</td>
|
|
@ -112,57 +138,55 @@
|
|
|
</div>
|
|
|
<table class="table table-bordered mb0">
|
|
|
<tr>
|
|
|
<td class="col-w60 c-t-center">症
|
|
|
<br>状</td>
|
|
|
<td class="col-w60 c-t-center">症 状
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-checkbox-group v-model="symptom_check">
|
|
|
<el-checkbox label="1 无症状" key=""></el-checkbox>
|
|
|
<el-checkbox label="2 头痛"></el-checkbox>
|
|
|
<el-checkbox label="3 头晕"></el-checkbox>
|
|
|
<el-checkbox label="4 心悸"></el-checkbox>
|
|
|
<el-checkbox label="5 胸闷"></el-checkbox>
|
|
|
<el-checkbox label="6 胸痛"></el-checkbox>
|
|
|
<el-checkbox label="7 慢性咳嗽"></el-checkbox>
|
|
|
<el-checkbox label="8 咳痰"></el-checkbox>
|
|
|
<el-checkbox label="9 呼吸困难"></el-checkbox>
|
|
|
<el-checkbox label="10 多饮"></el-checkbox>
|
|
|
<el-checkbox label="11 多尿"></el-checkbox>
|
|
|
<el-checkbox label="12 体重下降"></el-checkbox>
|
|
|
<el-checkbox label="13 乏力"></el-checkbox>
|
|
|
<el-checkbox label="14 关节肿痛"></el-checkbox>
|
|
|
<el-checkbox label="15 视力模糊"></el-checkbox>
|
|
|
<el-checkbox label="16 手脚麻木"></el-checkbox>
|
|
|
<el-checkbox label="17 尿急"></el-checkbox>
|
|
|
<el-checkbox label="18 尿痛"></el-checkbox>
|
|
|
<el-checkbox label="19 便秘 "></el-checkbox>
|
|
|
<el-checkbox label="20 腹泻"></el-checkbox>
|
|
|
<el-checkbox label="21 恶心呕吐"></el-checkbox>
|
|
|
<el-checkbox label="22 眼花"></el-checkbox>
|
|
|
<el-checkbox label="23 耳鸣 "></el-checkbox>
|
|
|
<el-checkbox label="24 乳房胀痛"></el-checkbox>
|
|
|
<el-checkbox-group v-model="symptom_check" :disabled="!editable">
|
|
|
<el-checkbox label="1" key="">无症状</el-checkbox>
|
|
|
<el-checkbox label="2"> 头痛</el-checkbox>
|
|
|
<el-checkbox label="3"> 头晕</el-checkbox>
|
|
|
<el-checkbox label="4">心悸</el-checkbox>
|
|
|
<el-checkbox label="5">胸闷</el-checkbox>
|
|
|
<el-checkbox label="6">胸痛</el-checkbox>
|
|
|
<el-checkbox label="7">慢性咳嗽</el-checkbox>
|
|
|
<el-checkbox label="8"> 咳痰</el-checkbox>
|
|
|
<el-checkbox label="9">呼吸困难</el-checkbox>
|
|
|
<el-checkbox label="10">多饮</el-checkbox>
|
|
|
<el-checkbox label="11">多尿</el-checkbox>
|
|
|
<el-checkbox label="12">体重下降</el-checkbox>
|
|
|
<el-checkbox label="13">乏力</el-checkbox>
|
|
|
<el-checkbox label="14">关节肿痛</el-checkbox>
|
|
|
<el-checkbox label="15"> 视力模糊</el-checkbox>
|
|
|
<el-checkbox label="16">手脚麻木</el-checkbox>
|
|
|
<el-checkbox label="17"> 尿急</el-checkbox>
|
|
|
<el-checkbox label="18"> 尿痛</el-checkbox>
|
|
|
<el-checkbox label="19">便秘 </el-checkbox>
|
|
|
<el-checkbox label="20"> 腹泻</el-checkbox>
|
|
|
<el-checkbox label="21">恶心呕吐</el-checkbox>
|
|
|
<el-checkbox label="22"> 眼花</el-checkbox>
|
|
|
<el-checkbox label="23">耳鸣</el-checkbox>
|
|
|
<el-checkbox label="24">乳房胀痛</el-checkbox>
|
|
|
<el-checkbox class="setinput" label="25">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.symptom_other" placeholder="其他" clearable></el-input>
|
|
|
<el-input :readonly="symptom_other_dis||!editable" v-model="oldmanData.symptom_other" placeholder="其他" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!--一般状况-->
|
|
|
<tr>
|
|
|
<td rowspan="9" class="col-w60 c-t-center">一
|
|
|
<br>般
|
|
|
<br>状
|
|
|
<br>况</td>
|
|
|
<td rowspan="9" class="col-w60 c-t-center">一 般 状 况
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">体  温</td>
|
|
|
<td class="ui-grid">
|
|
|
<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>
|
|
|
<td class="col-w120 c-t-center">脉  率</td>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.pulse_frequency" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.pulse_frequency" placeholder="" type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">次/分钟</div>
|
|
|
</td>
|
|
@ -172,12 +196,12 @@
|
|
|
<td rowspan="2">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.breath_frequency" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.breath_frequency" placeholder="" type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">次/分钟</div>
|
|
|
<div class="ui-col-0 lh27">次/分钟</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td rowspan="2" class="col-w120 c-t-center">血 压</td>
|
|
|
<td rowspan="2" class="col-w120 c-t-center">血  压</td>
|
|
|
<td class="ui-grid">
|
|
|
<div class="ui-ciol-0 col-w60 c-border-r">左 侧</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
@ -188,7 +212,7 @@
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border-top: 0;border-bottom: 0;">
|
|
|
<div class="ui-ciol-0 col-w60 c-border-r">右 侧</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="number" style="width: 100px;" :readonly="!editable" v-model="oldmanData.blood_pressure_right_low" placeholder=""></el-input>/
|
|
@ -199,16 +223,16 @@
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">身  高</td>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.height" placeholder="" clearable></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">体  重</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="" clearable></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>
|
|
@ -218,16 +242,16 @@
|
|
|
<td>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.waistline" placeholder="" clearable></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>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">体质指数(BMI)</td>
|
|
|
<td>
|
|
|
<td style="border: 0;">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.BMI" placeholder="" clearable></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>
|
|
@ -236,7 +260,7 @@
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">老年人健康状态自我评估*</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="oldmanData.health_status">
|
|
|
<el-radio-group v-model="oldmanData.health_status" :disabled="!editable">
|
|
|
<el-radio :label="1">1 满意</el-radio>
|
|
|
<el-radio :label="2">2 基本满意</el-radio>
|
|
|
<el-radio :label="3">3 说不清楚</el-radio>
|
|
@ -248,7 +272,7 @@
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">老年人生活自理自我评估*</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="oldmanData.selfcare_ability">
|
|
|
<el-radio-group v-model="oldmanData.selfcare_ability" :disabled="!editable">
|
|
|
<el-radio :label="1">1 可自理(0 ~ 3 分)</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖(4 ~ 8 分)</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖(9 ~ 18 分)</el-radio>
|
|
@ -259,18 +283,22 @@
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">老年人认知功能*</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="oldmanData.cognitive_function">
|
|
|
<el-radio-group v-model="oldmanData.cognitive_function" :disabled="!editable">
|
|
|
<el-radio :label="1">1 粗筛阴性</el-radio>
|
|
|
<el-radio :label="2">2 粗筛阳性, 简易智力状态检查,总分</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 粗筛阳性, 简易智力状态检查,总分
|
|
|
<el-input style="width: 120px;" min="0" type="number" :readonly="!editable" v-model="oldmanData.cognitive_function_score"></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">老年人情感状态*</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="oldmanData.emotional_state">
|
|
|
<el-radio-group v-model="oldmanData.emotional_state" :disabled="!editable">
|
|
|
<el-radio :label="1">1 粗筛阴性</el-radio>
|
|
|
<el-radio :label="2">2 粗筛阳性, 简易智力状态检查,总分</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 粗筛阳性, 简易智力状态检查,总分
|
|
|
<el-input style="width: 120px;" min="0" type="number" :readonly="!editable" v-model="oldmanData.emotional_state_score"></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
@ -285,7 +313,7 @@
|
|
|
<td rowspan="3" class="col-w120 c-t-center">体育锻炼</td>
|
|
|
<td class="col-w120 c-t-center">锻炼频率</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio-group v-model="oldmanData.exercise_frequency" :disabled="!editable">
|
|
|
<el-radio :label="1">1 每天</el-radio>
|
|
|
<el-radio :label="2">2 每周一次以上</el-radio>
|
|
|
<el-radio :label="3">3 偶尔</el-radio>
|
|
@ -295,18 +323,18 @@
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">每次锻炼时间</td>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" 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">分钟</div>
|
|
|
<div class="ui-col-0 lh27">分钟</div>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">坚持锻炼时间</td>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border: 0;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" 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">年</div>
|
|
|
<div class="ui-col-0 lh27">年</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -314,30 +342,31 @@
|
|
|
<td colspan="3">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.exercise_type" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">年</div>
|
|
|
<div class="ui-col-0 lh27"></div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">饮食习惯</td>
|
|
|
<td colspan="4">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 荤素均衡</el-radio>
|
|
|
<el-radio :label="2">2 荤食为主</el-radio>
|
|
|
<el-radio :label="3">3 素食为主</el-radio>
|
|
|
<el-radio :label="4">4 嗜盐</el-radio>
|
|
|
<el-radio :label="5">5 嗜油</el-radio>
|
|
|
<el-radio :label="6">6 嗜糖</el-radio>
|
|
|
</el-radio-group>
|
|
|
<el-checkbox-group v-model="dietary_habit_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">荤素均衡</el-checkbox>
|
|
|
<el-checkbox label="2"> 荤食为主</el-checkbox>
|
|
|
<el-checkbox label="3"> 素食为主</el-checkbox>
|
|
|
<el-checkbox label="4">嗜盐</el-checkbox>
|
|
|
<el-checkbox label="5">嗜油</el-checkbox>
|
|
|
<el-checkbox label="6">嗜糖</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td rowspan="3" class="col-w120 c-t-center">吸烟情况</td>
|
|
|
<td class="col-w120 c-t-center">吸烟状况</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio-group v-model="oldmanData.smoking_state" :disabled="!editable">
|
|
|
<el-radio :label="1">1 从不吸烟</el-radio>
|
|
|
<el-radio :label="2">2 已戒烟</el-radio>
|
|
|
<el-radio :label="3">3 吸烟</el-radio>
|
|
@ -348,35 +377,35 @@
|
|
|
<td class="col-w120 c-t-center">日吸烟量</td>
|
|
|
<td colspan="3">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">平均</div>
|
|
|
<div class="ui-col-0 lh27">平均</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" 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">次</div>
|
|
|
<div class="ui-col-0 lh27">支</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">平均吸烟年龄</td>
|
|
|
<td class="ui-grid">
|
|
|
<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="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" type="number" min=0 v-model="oldmanData.start_smoking_age" placeholder=""></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">岁</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">戒烟年龄</td>
|
|
|
<td class="ui-grid">
|
|
|
<td class="ui-grid" style="border: 0; border-right:1px soild #ddd;">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></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">岁</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td rowspan="5" class="col-w120 c-t-center">饮酒情况</td>
|
|
|
<td class="col-w120 c-t-center">饮酒频率</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio-group v-model="oldmanData.drinking_frequency" :disabled="!editable">
|
|
|
<el-radio :label="1">1 从不</el-radio>
|
|
|
<el-radio :label="2">2 偶尔</el-radio>
|
|
|
<el-radio :label="3">3 经常</el-radio>
|
|
@ -388,42 +417,42 @@
|
|
|
<td class="col-w120 c-t-center">日饮酒量</td>
|
|
|
<td colspan="3">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">平均</div>
|
|
|
<div class="ui-col-0 lh27">平均</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.drinking_daily" min=0 type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">两</div>
|
|
|
<div class="ui-col-0 lh27">两</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">是否戒酒</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio-group v-model="oldmanData.is_stop_drinking" :disabled="!editable">
|
|
|
<el-radio :label="1">1 未戒酒</el-radio>
|
|
|
<el-radio :label="2">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">2 已借酒,戒酒年龄:</div>
|
|
|
<div class="ui-col-0 lh27">2 已戒酒,戒酒年龄:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input type="number" :readonly="!editable" min="0" v-model="oldmanData.stop_drinking_age" placeholder=""></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">岁</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</div>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">平均饮酒年龄</td>
|
|
|
<td class="ui-grid">
|
|
|
<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="input" 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">岁</div>
|
|
|
<div class="ui-col-0 lh27">岁</div>
|
|
|
</td>
|
|
|
<td class="col-w120 c-t-center">近一年是否曾醉酒</td>
|
|
|
<td>
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio-group v-model="oldmanData.drunkenness" :disabled="!editable">
|
|
|
<el-radio :label="1">1 是</el-radio>
|
|
|
<el-radio :label="2">2 否</el-radio>
|
|
|
</el-radio-group>
|
|
@ -432,86 +461,155 @@
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">饮酒种类</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 白酒</el-radio>
|
|
|
<el-radio :label="2">2 啤酒</el-radio>
|
|
|
<el-radio :label="3">3 红酒</el-radio>
|
|
|
<el-radio :label="4">4 黄酒</el-radio>
|
|
|
<el-checkbox class="setinput" label="5">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="其他" clearable></el-input>
|
|
|
<el-checkbox-group v-model="drinking_type_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">白酒</el-checkbox>
|
|
|
<el-checkbox label="2">啤酒</el-checkbox>
|
|
|
<el-checkbox label="3">红酒 </el-checkbox>
|
|
|
<el-checkbox label="4">黄酒 </el-checkbox>
|
|
|
<el-checkbox label="5" class="setinput">其他
|
|
|
<el-input :readonly="other_drinking_type_dis||!editable" v-model="oldmanData.other_drinking_type" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-radio-group>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">职业病危害因素接触史</td>
|
|
|
<td colspan="4">
|
|
|
<div>
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">2 有 (工种</div>
|
|
|
<div class="ui-col-0">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<!-- <el-radio-group :disabled="!editable" v-model="oldmanData.">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">2 有 (工种</div>
|
|
|
<div class="ui-col-0">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">从业时间</div>
|
|
|
<div class="ui-col-0">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">年)</div>
|
|
|
</div>
|
|
|
<div class="ui-col-0">从业时间</div>
|
|
|
<div class="ui-col-0">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">年)</div>
|
|
|
</div>
|
|
|
</el-radio>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 mr10">毒物种类</div>
|
|
|
<div class="ui-col-1">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">粉尘防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-radio>
|
|
|
|
|
|
</el-radio-group>
|
|
|
</div>-->
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 mr10">毒物种类</div>
|
|
|
<div class="ui-col-1">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">粉尘</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="text" :readonly="!editable" v-model="oldmanData.dust" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">        粉尘防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="oldmanData.dust_protective_measures" :disabled="!editable">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 有
|
|
|
<el-input type="text" :readonly="dust_protective_measures_has_dis||!editable" v-model="oldmanData.dust_protective_measures_has"
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">放射物质防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">放射物质</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="text" :readonly="!editable" v-model="oldmanData.radiogen" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">    放射物质防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="oldmanData.radiogen_protective_measures" :disabled="!editable">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 有
|
|
|
<el-input type="text" :readonly="radiogen_protective_measures_has_dis||!editable" v-model="oldmanData.radiogen_protective_measures_has"
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">物理因素防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">物理因素</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="text" :readonly="!editable" v-model="oldmanData.physical_factor" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">    物理因素防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="oldmanData.physical_protective_measures" :disabled="!editable">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 有
|
|
|
<el-input type="text" :readonly="physical_protective_measures_has_dis||!editable" v-model="oldmanData.physical_protective_measures_has"
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">化学物质防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">化学物质</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="text" :readonly="!editable" v-model="oldmanData.chemical_factor" clearable></el-input>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">    化学物质防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="oldmanData.chemical_protective_measures" :disabled="!editable">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 有
|
|
|
<el-input type="text" :readonly="chemical_protective_measures_has_dis||!editable" v-model="oldmanData.chemical_protective_measures_has"
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">其他防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="radio">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">其他危害因素</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input type="text" :readonly="!editable" v-model="oldmanData.other_hazard_factors" clearable></el-input>
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
<div class="ui-col-1 ui-grid">
|
|
|
<div class="ui-col-0">  其他危害因素防范措施</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group v-model="oldmanData.other_hazard_protective_measures" :disabled="!editable">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 有
|
|
|
<el-input type="text" :readonly="other_hazard_protective_measures_has_dis||!editable" v-model="oldmanData.other_hazard_protective_measures_has"
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 脏器功能 -->
|
|
@ -561,7 +659,17 @@
|
|
|
视 力
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="setinput">
|
|
|
左眼
|
|
|
<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" min=0 v-model="oldmanData.right_eyesight" type="number"></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" min=0 v-model="oldmanData.right_correctional_eyesight" type="number"></el-input>
|
|
|
)
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -569,7 +677,10 @@
|
|
|
听 力
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.hearing">
|
|
|
<el-radio :label="1">1 听见</el-radio>
|
|
|
<el-radio :label="2">2 听不清或无法听见</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -577,18 +688,25 @@
|
|
|
运动功能
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.motor_function">
|
|
|
<el-radio :label="1">1 可顺利完成</el-radio>
|
|
|
<el-radio :label="2">2 无法独立完成任何一个动作</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 查体 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="13">查 体 </td>
|
|
|
<td class="c-t-center" rowspan="15">查 体 </td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
眼 底
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.fundus">
|
|
|
<el-radio :label="1">1 正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="fundus_abnormal_dis||!editable" v-model="oldmanData.fundus_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -596,7 +714,17 @@
|
|
|
皮 肤
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.skin">
|
|
|
<el-radio :label="1">1 正常</el-radio>
|
|
|
<el-radio :label="2">2 潮红</el-radio>
|
|
|
<el-radio :label="3">3 苍白</el-radio>
|
|
|
<el-radio :label="4">4 发钳</el-radio>
|
|
|
<el-radio :label="5">5黄染</el-radio>
|
|
|
<el-radio :label="6">6 色素沉着</el-radio>
|
|
|
<el-radio :label="7" class="setinput">7 其他
|
|
|
<el-input :readonly="skin_other_dis||!editable" v-model="oldmanData.skin_other" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -604,7 +732,14 @@
|
|
|
巩 膜
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.sclera">
|
|
|
<el-radio :label="1">1 正常</el-radio>
|
|
|
<el-radio :label="2">2 黄染</el-radio>
|
|
|
<el-radio :label="3">3 充血</el-radio>
|
|
|
<el-radio :label="4" class="setinput">4 其他
|
|
|
<el-input :readonly="sclera_other_dis||!editable" v-model="oldmanData.sclera_other" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -612,15 +747,62 @@
|
|
|
淋巴结
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.lymphaden">
|
|
|
<el-radio :label="1">1 未触及</el-radio>
|
|
|
<el-radio :label="2">2 锁骨上</el-radio>
|
|
|
<el-radio :label="3">3 腋窝</el-radio>
|
|
|
<el-radio :label="4" class="setinput">4 其他
|
|
|
<el-input :readonly="lymphaden_other_dis||!editable" v-model="oldmanData.lymphaden_other" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
<td class="c-t-center col-w120" rowspan="3">
|
|
|
肺
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0"> 桶状胸:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.barrel_chest">
|
|
|
<el-radio :label="1">1 否</el-radio>
|
|
|
<el-radio :label="2">2 是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="4">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0"> 呼吸音:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.breath_sounds">
|
|
|
<el-radio :label="1">1 正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="breath_sounds_abnormal_dis||!editable" v-model="oldmanData.breath_sounds_abnormal" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="4">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0"> 罗  音:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.rale">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 干罗音</el-radio>
|
|
|
<el-radio :label="3">3 湿罗音</el-radio>
|
|
|
<el-radio :label="4" class="setinput">4 其他
|
|
|
<el-input :readonly="rale_abnormal_dis||!editable" v-model="oldmanData.rale_abnormal" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -628,7 +810,29 @@
|
|
|
心 脏
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="setinput ui-grid">
|
|
|
<div>
|
|
|
心率:
|
|
|
<el-input style="width: 100px;" :readonly="!editable" v-model="oldmanData.heart_rhythm" placeholder="" type="number" min=0></el-input>
|
|
|
次/分钟 
|
|
|
|
|
|
</div>
|
|
|
<div class="lh27">
|
|
|
心律:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.heart_rate">
|
|
|
<el-radio :label="1">1 齐</el-radio>
|
|
|
<el-radio :label="2">2 不齐</el-radio>
|
|
|
<el-radio :label="3">3 绝对不齐</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div>
|
|
|
杂音:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.heart_noise">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -636,7 +840,51 @@
|
|
|
腹 部
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="setinput">
|
|
|
压痛:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdominal_tenderness">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有
|
|
|
<el-input type="text" :readonly="tenderness_has_dis||!editable" v-model="oldmanData.tenderness_has" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
包块:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdominal_mass">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有
|
|
|
<el-input type="text" :readonly="mass_has_dis||!editable" v-model="oldmanData.mass_has" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
肝大:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdominal_hepatomegaly">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有
|
|
|
<el-input type="text" :readonly="hepatomegaly_has_dis||!editable" v-model="oldmanData.hepatomegaly_has" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
脾大:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdominal_spleen_big">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有
|
|
|
<el-input type="text" :readonly="spleen_big_has_dis||!editable" v-model="oldmanData.spleen_big_has" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
移动性浊音:
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdominal_shifting_dullness">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 有
|
|
|
<el-input type="text" :readonly="shifting_dullness_has_dis||!editable" v-model="oldmanData.shifting_dullness_has" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -644,7 +892,12 @@
|
|
|
下肢水肿
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.crura_edema">
|
|
|
<el-radio :label="1">1 无</el-radio>
|
|
|
<el-radio :label="2">2 单侧</el-radio>
|
|
|
<el-radio :label="3">3 双侧不对称</el-radio>
|
|
|
<el-radio :label="4">4 双侧对称</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -652,7 +905,12 @@
|
|
|
足背动脉搏动
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.dorsal_foot_pulse">
|
|
|
<el-radio :label="1">1 未接触</el-radio>
|
|
|
<el-radio :label="2">2 触及双侧对称</el-radio>
|
|
|
<el-radio :label="3">3 触及左侧弱或消失</el-radio>
|
|
|
<el-radio :label="4">4 触及右侧弱或消失</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -660,7 +918,15 @@
|
|
|
肛门指诊
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.anus_dre">
|
|
|
<el-radio :label="1">1 未接触</el-radio>
|
|
|
<el-radio :label="2">2 触及双侧对称</el-radio>
|
|
|
<el-radio :label="3">3 触及左侧弱或消失</el-radio>
|
|
|
<el-radio :label="4">4 触及右侧弱或消失</el-radio>
|
|
|
<el-radio :label="5" class="setinput">5 其他
|
|
|
<el-input :readonly="anus_dre_other_dis||!editable" v-model="oldmanData.anus_dre_other" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -668,21 +934,34 @@
|
|
|
乳 腺
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-checkbox-group v-model="breast_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未见异常</el-checkbox>
|
|
|
<el-checkbox label="2">乳房切除</el-checkbox>
|
|
|
<el-checkbox label="3">异常泌乳 </el-checkbox>
|
|
|
<el-checkbox label="4">乳腺包块 </el-checkbox>
|
|
|
<el-checkbox label="5" class="setinput">其他
|
|
|
<el-input :readonly="breast_other_dis||!editable" v-model="oldmanData.breast_other" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="5" class="table2Td">
|
|
|
<table class="table2">
|
|
|
<tr>
|
|
|
<td class="c-t-center" style="width: 68px" rowspan="5">
|
|
|
<td class="c-t-center" style="width: 68px;border:0;" rowspan="5">
|
|
|
妇科
|
|
|
</td>
|
|
|
<td class="c-t-center" style="width: 62px">
|
|
|
外阴
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.vulva">
|
|
|
<el-radio :label="1">1 未见异常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="vulva_abnormal_dis||!editable" v-model="oldmanData.vulva_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -690,7 +969,12 @@
|
|
|
阴道
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.vagina">
|
|
|
<el-radio :label="1">1 未见异常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="vagina_abnormal_dis||!editable" v-model="oldmanData.vagina_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -698,7 +982,12 @@
|
|
|
宫颈
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.cervical">
|
|
|
<el-radio :label="1">1 未见异常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="cervical_abnormal_dis||!editable" v-model="oldmanData.cervical_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -706,7 +995,12 @@
|
|
|
宫体
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.corpus">
|
|
|
<el-radio :label="1">1 未见异常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="corpus_abnormal_dis||!editable" v-model="oldmanData.corpus_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -714,29 +1008,56 @@
|
|
|
附件
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.gynecologic_appendix">
|
|
|
<el-radio :label="1">1 未见异常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">2 异常
|
|
|
<el-input :readonly="appendix_abnormal_dis||!editable" v-model="oldmanData.appendix_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
<td class="c-t-center">
|
|
|
其 他
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<td colspan="5">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.physical_examination_other" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 辅助检查 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="15">辅 助 检 查 </td>
|
|
|
<td class="c-t-center" rowspan="17">辅 助 检 查 </td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
血常规
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<div class="setinput">
|
|
|
<span>
|
|
|
血红蛋白:
|
|
|
<el-input :readonly="!editable" class="col-w60" v-model="oldmanData.hemoglobin" type="number" min=0></el-input>g/L 
|
|
|
</span>
|
|
|
<span>
|
|
|
白细胞:
|
|
|
<el-input :readonly="!editable" class="col-w60" v-model="oldmanData.leukocyte" type="number" min=0></el-input> x 10
|
|
|
<sup>9</sup>/L 
|
|
|
</span>
|
|
|
<span>
|
|
|
血小板:
|
|
|
<el-input :readonly="!editable" class="col-w60" v-model="oldmanData.thrombocyte" type="number" min=0></el-input> x 10
|
|
|
<sup>9</sup>/L
|
|
|
</span>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0 lh27">
|
|
|
其他:
|
|
|
</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.blood_routine_other" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -744,31 +1065,64 @@
|
|
|
尿常规
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="setinput">
|
|
|
尿蛋白:
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.urine_protein" placeholder="" clearable></el-input>
|
|
|
尿糖:
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.urine_sugar" placeholder="" clearable></el-input>
|
|
|
尿酮体:
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.urine_acetone_bodies" placeholder="" clearable></el-input>
|
|
|
尿潜血:
|
|
|
<el-input class="col-w120" :readonly="!editable" v-model="oldmanData.urine_occult_blood" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-grid mt10">
|
|
|
<div class="ui-col-0 lh27">其他:</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.urine_routine_other" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
心电图
|
|
|
空腹血糖
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<td colspan="4" class="setinput">
|
|
|
<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>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
空腹血糖
|
|
|
心电图
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.electrocardiogram">
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">异常
|
|
|
<el-input :readonly="electrocardiogram_abnormal_dis||!editable" v-model="oldmanData.electrocardiogram_abnormal" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
尿微量白蛋白
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.microalbuminuria" placeholder="" clearable></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">
|
|
|
mg/dL
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -776,7 +1130,11 @@
|
|
|
大便潜血
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.occult_blood_in_stool">
|
|
|
<el-radio :label="1">阴性</el-radio>
|
|
|
<el-radio :label="2" class="setinput">阳性
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -784,7 +1142,14 @@
|
|
|
糖化血红蛋白
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.glycated_hemoglobin" min=0 type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">
|
|
|
%
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -792,7 +1157,11 @@
|
|
|
乙型肝炎 表面抗原
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.hbsAg">
|
|
|
<el-radio :label="1">阴性</el-radio>
|
|
|
<el-radio :label="2" class="setinput">阳性
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -800,7 +1169,33 @@
|
|
|
肝功能
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="flex-box">
|
|
|
<div class="setinput">
|
|
|
<p>
|
|
|
血清谷丙转氨酶:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.alt" min=0 type="number"></el-input>U/L
|
|
|
</p>
|
|
|
<p>
|
|
|
白蛋白 :
|
|
|
<el-input style="width: 115px" :readonly="!editable" v-model="oldmanData.albumin" min=0 type="number"></el-input>g/L
|
|
|
</p>
|
|
|
<p>
|
|
|
结合胆红素 :
|
|
|
<el-input style="width: 83px;" :readonly="!editable" v-model="oldmanData.conjugated_bilirubin" min=0 type="number"></el-input> μmol/L
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
<div class="setinput ml40">
|
|
|
<p>
|
|
|
血清谷草转氨酶:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.sgot" min=0 type="number"></el-input>U/L
|
|
|
</p>
|
|
|
<p>
|
|
|
总胆红素 :
|
|
|
<el-input style="width: 97px;" :readonly="!editable" v-model="oldmanData.total_bilirubin" min=0 type="number"></el-input> μmol/L
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -808,7 +1203,33 @@
|
|
|
肾功能
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="flex-box">
|
|
|
<div class="setinput">
|
|
|
<p>
|
|
|
血清肌酐:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.serum_creatinine" min=0 type="number"></el-input> μmol/L
|
|
|
</p>
|
|
|
<p>
|
|
|
血钾浓度 :
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.blood_potassium_concentration" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
<p>
|
|
|
尿酸 :
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.uric_acid" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
<div class="setinput ml40">
|
|
|
<p>
|
|
|
血尿素氮:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.blood_urea_nitrogen" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
<p>
|
|
|
血钠浓度 :
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.blood_Na_concentration" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -816,7 +1237,38 @@
|
|
|
血 脂
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<div class="flex-box setinput">
|
|
|
<p>总胆固醇:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.total_cholesterol" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
<p class="ml40">
|
|
|
甘油三酯:
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.triglyceride" min=0 type="number"></el-input> mmo/L
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
血清低密度脂蛋白胆固醇 :
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.ldl_cholesterol" min=0 type="number"></el-input> mmo/L
|
|
|
</div>
|
|
|
<div class="setinput">
|
|
|
血清高密度脂蛋白胆固醇 :
|
|
|
<el-input class="col-w60" :readonly="!editable" v-model="oldmanData.hdl_cholesterol" min=0 type="number"></el-input> mmo/L
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
甲胎蛋白
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-1">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.alpha_fetal_protein" min=0 type="number"></el-input>
|
|
|
</div>
|
|
|
<div class="ui-col-0">
|
|
|
mg/dL
|
|
|
</div>
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -824,15 +1276,39 @@
|
|
|
胸部 X 线片
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.chest_Xray">
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">异常
|
|
|
<el-input :readonly="chest_Xray_abnormal_dis||!editable" v-model="oldmanData.chest_Xray_abnormal" placeholder="" clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
<td class="c-t-center col-w120" rowspan="2">
|
|
|
B 超
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
腹部B超
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.abdomen_B_ultrasonic">
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">异常
|
|
|
<el-input :readonly="abdomen_B_ultrasonic_abnormal_dis||!editable" v-model="oldmanData.abdomen_B_ultrasonic_abnormal" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td colspan="4">
|
|
|
其他  
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.b_ultrasonic_other">
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">异常
|
|
|
<el-input :readonly="B_ultrasonic_other_abnormal_dis||!editable" v-model="oldmanData.B_ultrasonic_other_abnormal" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -840,7 +1316,13 @@
|
|
|
宫颈涂片
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.cervical_smear">
|
|
|
<el-radio :label="1">正常</el-radio>
|
|
|
<el-radio :label="2" class="setinput">异常
|
|
|
<el-input :readonly="cervical_smear_abnormal_dis||!editable" v-model="oldmanData.cervical_smear_abnormal" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
@ -848,252 +1330,1328 @@
|
|
|
其 他
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.auxiliary_examination_other" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 现存主要 健康问题 -->
|
|
|
<!-- 中医体质辨识 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="7">现存主要 健康问题 </td>
|
|
|
<td class="c-t-center" rowspan="9">中医体质辨识</td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
口 腔
|
|
|
平和质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.mild_physical">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">倾向是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
视 力
|
|
|
气虚质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.qi_deficiency">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
听 力
|
|
|
阳虚质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.yang_deficiency">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
运动功能
|
|
|
阴虚质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.yin_deficiency">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
听 力
|
|
|
痰湿质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.phlegm_dampness">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
听 力
|
|
|
湿热质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.dampness_heat">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
听 力
|
|
|
血瘀质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.blood_stasis">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
<!-- 住院治疗 情况 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="2">住院治疗 情况 </td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
住院史
|
|
|
气郁质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.logistic_regression">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
家 庭 病床史
|
|
|
特秉质
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.grasp_quality">
|
|
|
<el-radio :label="1">是</el-radio>
|
|
|
<el-radio :label="2" class="setinput">基本是</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 主要用药情况 -->
|
|
|
|
|
|
<!-- 现存主要 健康问题 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="2">主要用药情况 </td>
|
|
|
<td class="c-t-center" rowspan="7">现存主要 健康问题 </td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
住院史
|
|
|
脑血管疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<el-checkbox-group v-model="cerebrovascular_disease_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未发现</el-checkbox>
|
|
|
<el-checkbox label="2">缺血性卒中</el-checkbox>
|
|
|
<el-checkbox label="3">脑出血 </el-checkbox>
|
|
|
<el-checkbox label="4">蛛网膜下腔出血 </el-checkbox>
|
|
|
<el-checkbox label="5">短暂性脑缺血发作 </el-checkbox>
|
|
|
<el-checkbox label="6" class="setinput">其他
|
|
|
<el-input :readonly="cerebrovascular_disease_other_dis||!editable" v-model="oldmanData.cerebrovascular_disease_other" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
家 庭 病床史
|
|
|
肾脏疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-checkbox-group v-model="nephropathy_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未发现</el-checkbox>
|
|
|
<el-checkbox label="2">糖尿病肾病</el-checkbox>
|
|
|
<el-checkbox label="3">肾功能衰竭 </el-checkbox>
|
|
|
<el-checkbox label="4">急性肾炎 </el-checkbox>
|
|
|
<el-checkbox label="5">慢性肾炎 </el-checkbox>
|
|
|
<el-checkbox label="6" class="setinput">其他
|
|
|
<el-input :readonly="nephropathy_other_dis||!editable" v-model="oldmanData.nephropathy_other" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 非免疫 规划预防 接种 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="2">非免疫 规划预防 接种史 </td>
|
|
|
<td class="c-t-center col-w120">
|
|
|
住院史
|
|
|
心脏疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable>
|
|
|
</el-input>
|
|
|
<el-checkbox-group v-model="heart_disease_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未发现</el-checkbox>
|
|
|
<el-checkbox label="2">心肌梗死</el-checkbox>
|
|
|
<el-checkbox label="3">心绞痛 </el-checkbox>
|
|
|
<el-checkbox label="4">冠状动脉血运重建 </el-checkbox>
|
|
|
<el-checkbox label="5">充血性心力衰竭 </el-checkbox>
|
|
|
<el-checkbox label="6">心前区疼痛 </el-checkbox>
|
|
|
<el-checkbox label="7" class="setinput">其他
|
|
|
<el-input :readonly="heart_disease_other_dis||!editable" v-model="oldmanData.heart_disease_other" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
家 庭 病床史
|
|
|
血管疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
<el-checkbox-group v-model="vascular_disease_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未发现</el-checkbox>
|
|
|
<el-checkbox label="2">夹层动脉瘤</el-checkbox>
|
|
|
<el-checkbox label="3">动脉闭塞性疾病 </el-checkbox>
|
|
|
<el-checkbox label="4" class="setinput">其他
|
|
|
<el-input :readonly="vascular_disease_other_dis||!editable" v-model="oldmanData.vascular_disease_other" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!--健康评价 -->
|
|
|
<td class="col-w120 c-t-center">健康评价</td>
|
|
|
<td colspan="5">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
眼部疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-checkbox-group v-model="eye_disease_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">未发现</el-checkbox>
|
|
|
<el-checkbox label="2">视网膜出血或渗出</el-checkbox>
|
|
|
<el-checkbox label="3">视乳头水肿 </el-checkbox>
|
|
|
<el-checkbox label="4">白内障 </el-checkbox>
|
|
|
<el-checkbox label="5" class="setinput">其他
|
|
|
<el-input :readonly="eye_disease_dis||!editable" v-model="oldmanData.eye_disease_other" placeholder="" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 健康指导 -->
|
|
|
<td class="col-w120 c-t-center">健康指导</td>
|
|
|
<td colspan="5">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
神经系统疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.nervous_system_disease">
|
|
|
<el-radio :label="1">未发现</el-radio>
|
|
|
<el-radio :label="2" class="setinput">有
|
|
|
<el-input :readonly="nervous_system_disease_has_dis||!editable" v-model="oldmanData.nervous_system_disease_has" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center col-w120">
|
|
|
其他系统疾病
|
|
|
</td>
|
|
|
<td colspan="4">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.other_system_disease">
|
|
|
<el-radio :label="1">未发现</el-radio>
|
|
|
<el-radio :label="2" class="setinput">有
|
|
|
<el-input :readonly="other_system_disease_has_dis||!editable" v-model="oldmanData.other_system_disease_has" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
|
|
|
<!-- <tr>
|
|
|
<td class="col-w120 c-t-center">体 温(℃)</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">一般健康情况</td>
|
|
|
<td colspan="3">
|
|
|
<el-input type="textarea" :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">一般心理状况</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">血 压(mmHg)</td>
|
|
|
<td colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="input" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="col-w120 c-t-center">乳 房</td>
|
|
|
<td colspan="3">
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="1">未见异常</el-radio>
|
|
|
<el-radio :disabled="!editable" v-model="radio" label="2">异常</el-radio>
|
|
|
</td>
|
|
|
</tr>-->
|
|
|
</table>
|
|
|
<!-- <follow-bottom></follow-bottom> -->
|
|
|
</div>
|
|
|
<script src="../../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../plugins/toastr/toastr.min.js"></script>
|
|
|
<script src="../../../../js/es6-promise.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/underscore.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/element-ui.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../api/http-request.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../api/fangshi-api.js"></script>
|
|
|
<script>
|
|
|
var Request = GetRequest();
|
|
|
new Vue({
|
|
|
el: "#app",
|
|
|
data: function () {
|
|
|
return {
|
|
|
editable: true,
|
|
|
isEditBtn: true,
|
|
|
symptom_check: [],
|
|
|
oldmanData: {},
|
|
|
data1: "",
|
|
|
input: null,
|
|
|
radio: "",
|
|
|
followupId: Request['id']
|
|
|
|
|
|
}
|
|
|
},
|
|
|
mounted: function () {
|
|
|
this.getData()
|
|
|
},
|
|
|
watch: {
|
|
|
<!-- 住院治疗 情况 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="6">住院治疗 情况 </td>
|
|
|
<td class="c-t-center" rowspan="3">
|
|
|
住院史
|
|
|
</td>
|
|
|
<td class="c-t-center" style="width: 300px;">
|
|
|
入/出院日期
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
原 因
|
|
|
</td>
|
|
|
<td class="c-t-center col-w200">
|
|
|
医疗机构名称
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
病案号
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr class="setPicker">
|
|
|
<td class="c-t-center">
|
|
|
<div class="flex-box" style="align-items: center;justify-content: center;">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.admission_date1" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
/
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.discharge_date1" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_reason1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_hospital_name1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_number1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr class="setPicker">
|
|
|
<td class="c-t-center">
|
|
|
<div class="flex-box" style="align-items: center;justify-content: center;">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.admission_date2" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
/
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.discharge_date2" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_reason2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_hospital_name2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.admission_number2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="3">
|
|
|
家 庭 病床史
|
|
|
</td>
|
|
|
<td class="c-t-center col-w200">
|
|
|
建/撤床日期
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
原 因
|
|
|
</td>
|
|
|
<td class="c-t-center col-w200">
|
|
|
医疗机构名称
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
病案号
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr class="setPicker">
|
|
|
<td class="c-t-center">
|
|
|
<div class="flex-box" style="align-items: center;justify-content: center;">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.building_bed_date1" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
/
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.cancel_bed_date1" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_reason1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_hospiatl_name1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_number1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr class="setPicker">
|
|
|
<td class="c-t-center">
|
|
|
<div class="flex-box" style="align-items: center;justify-content: center;">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.building_bed_date2" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
/
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.cancel_bed_date2" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</div>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_reason2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_hospiatl_name2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.building_bed_number2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
|
getData: function () {
|
|
|
var vm = this
|
|
|
fangshiAPI.getOlderPeopleHealthCheckRecord({ followupId: this.followupId || '1' }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
var data = res.data
|
|
|
vm.oldmanData = data
|
|
|
var vmO = vm.oldmanData
|
|
|
if (vm.symptom_check) {
|
|
|
vmO.symptom_check = data.symptom.join(',')
|
|
|
<!-- 主要用药情况 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="7">主要用药情况 </td>
|
|
|
<td class="c-t-center">
|
|
|
药物名称
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
用 法
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
用 量
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
用药时间
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
服药依从性
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine1_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine1_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker class="c-t-center" :readonly="!editable" v-model="oldmanData.medication1_time" type="date" value-format="yyyy-MM-dd"
|
|
|
placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication1_compliance">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine2_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine2_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.medication2_time" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication2_compliance">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine3" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine3_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine3_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.medication3_time" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication3_compliance">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine4" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine4_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine4_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.medication4_time" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication4_compliance">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine5" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine5_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine5_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.medication5_time" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication5_compliance" style="text-align: left;">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine6" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine6_use" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.medicine6_dosage" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.medication6_time" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker" style="text-align: left;">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.medication6_compliance" style="text-align: left;">
|
|
|
<el-radio :label="1">1 规律</el-radio>
|
|
|
<el-radio :label="2">2 间断</el-radio>
|
|
|
<el-radio :label="3">3 不服药</el-radio>
|
|
|
</el-radio-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 非免疫 规划预防 接种 -->
|
|
|
<tr>
|
|
|
<td class="c-t-center" rowspan="4">非免疫 规划预防 接种史 </td>
|
|
|
<td class="c-t-center">
|
|
|
名 称
|
|
|
</td>
|
|
|
<td class="c-t-center">
|
|
|
接种日期
|
|
|
</td>
|
|
|
<td class="c-t-center" colspan="3">
|
|
|
接种机构
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_name1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.vaccination_date1" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_hospital_name1" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_name2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.vaccination_date2" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_hospital_name2" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
<tr>
|
|
|
<td class="c-t-center">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_name3" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
<td class="c-t-center setPicker">
|
|
|
<el-date-picker :readonly="!editable" v-model="oldmanData.vaccination_date3" type="date" value-format="yyyy-MM-dd" placeholder="选择日期">
|
|
|
</el-date-picker>
|
|
|
</td>
|
|
|
<td class="c-t-center" colspan="3">
|
|
|
<el-input :readonly="!editable" v-model="oldmanData.vaccination_hospital_name3" placeholder="" clearable></el-input>
|
|
|
</td>
|
|
|
</tr>
|
|
|
|
|
|
<!--健康评价 -->
|
|
|
<td class="c-t-center">健康评价</td>
|
|
|
<td colspan="5">
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.health_examination">
|
|
|
<el-radio :label="1">1 体检无异常 </el-radio>
|
|
|
<el-radio :label="2">2 有异常 </el-radio>
|
|
|
</el-radio-group>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">
|
|
|
异常 1
|
|
|
</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input :readonly="health_examination_abnormal1_dis||!editable" v-model="oldmanData.health_examination_abnormal1" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">
|
|
|
异常 2
|
|
|
</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input :readonly="health_examination_abnormal2_dis||!editable" v-model="oldmanData.health_examination_abnormal2" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">
|
|
|
异常 3
|
|
|
</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input :readonly="health_examination_abnormal3_dis||!editable" v-model="oldmanData.health_examination_abnormal3" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="ui-grid">
|
|
|
<div class="ui-col-0">
|
|
|
异常 4
|
|
|
</div>
|
|
|
<div class="ui-col-1 setinput">
|
|
|
<el-input :readonly="health_examination_abnormal4_dis||!editable" v-model="oldmanData.health_examination_abnormal4" placeholder=""
|
|
|
clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
</td>
|
|
|
</tr>
|
|
|
<!-- 健康指导 -->
|
|
|
<td class="c-t-center">健康指导</td>
|
|
|
<td colspan="2">
|
|
|
<el-checkbox-group v-model="suggest_recheck_check" :disabled="!editable">
|
|
|
<el-checkbox label="1"> 定期随访 </el-checkbox>
|
|
|
<el-checkbox label="2">纳入慢性病患者健康管理</el-checkbox>
|
|
|
<el-checkbox label="3">建议复查</el-checkbox>
|
|
|
<el-checkbox label="4">建议转诊</el-checkbox>
|
|
|
<el-checkbox label="5" class="setinput">其他
|
|
|
<el-input type="text" :readonly="other_health_guidance_description_dis||!editable" v-model="oldmanData.other_health_guidance_description"
|
|
|
clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</td>
|
|
|
<td colspan="3">
|
|
|
危险因素控制:
|
|
|
<br>
|
|
|
<el-checkbox-group v-model="dangerFacter_check" :disabled="!editable">
|
|
|
<el-checkbox label="1">戒烟</el-checkbox>
|
|
|
<el-checkbox label="2">健康饮酒 </el-checkbox>
|
|
|
<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" min=0></el-input>
|
|
|
Kg)</el-checkbox>
|
|
|
<el-checkbox label="6">建议接种疫苗 </el-checkbox>
|
|
|
<el-checkbox label="7" class="setinput">其他
|
|
|
<el-input type="text" :readonly="other_advice_description_dis||!editable" v-model="oldmanData.other_advice_description" clearable></el-input>
|
|
|
</el-checkbox>
|
|
|
</el-checkbox-group>
|
|
|
</td>
|
|
|
</tr>
|
|
|
</table>
|
|
|
<!-- 老年人生活自理 -->
|
|
|
<div class="p20">
|
|
|
<div class="mb20">
|
|
|
<p>1.进餐:试用餐具将饭菜送入口、咀嚼、吞咽等活动</p>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.eat">
|
|
|
<el-radio :label="1">1 独立完成0-3分</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖4-8分</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖9-18分</el-radio>
|
|
|
<el-radio :label="4">4 不能自理≥19分</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="mb20">
|
|
|
<p>2.梳洗:梳头、洗脸、刷牙、剃须洗澡等活动</p>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.wash">
|
|
|
<el-radio :label="1">1 独立完成0-3分</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖4-8分</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖9-18分</el-radio>
|
|
|
<el-radio :label="4">4 不能自理≥19分</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="mb20">
|
|
|
<p>3.穿衣:穿衣裤、袜子、鞋子等活动</p>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.dress">
|
|
|
<el-radio :label="1">1 独立完成0-3分</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖4-8分</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖9-18分</el-radio>
|
|
|
<el-radio :label="4">4 不能自理≥19分</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="mb20">
|
|
|
<p>4.如厕:小便、大便等活动及自控</p>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.toilet">
|
|
|
<el-radio :label="1">1 独立完成0-3分</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖4-8分</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖9-18分</el-radio>
|
|
|
<el-radio :label="4">4 不能自理≥19分</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="mb20">
|
|
|
<p>5.活动:站立、室内行走、上下楼梯、户外活动</p>
|
|
|
<el-radio-group :disabled="!editable" v-model="oldmanData.activity">
|
|
|
<el-radio :label="1">1 独立完成0-3分</el-radio>
|
|
|
<el-radio :label="2">2 轻度依赖4-8分</el-radio>
|
|
|
<el-radio :label="3">3 中度依赖9-18分</el-radio>
|
|
|
<el-radio :label="4">4 不能自理≥19分</el-radio>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
<div class="ui-grid setinput">
|
|
|
<div class="ui-col-0 lh27">
|
|
|
总评分:
|
|
|
</div>
|
|
|
<div class="ui-col-1">
|
|
|
<el-input style="width: 120px;" type="text" :readonly="!editable" v-model="oldmanData.score" clearable></el-input>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<follow-bottom :followupId="followupId"></follow-bottom>
|
|
|
</div>
|
|
|
<script src="../../../../js/vue.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/jquery-2.2.4.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/util.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../plugins/toastr/toastr.min.js"></script>
|
|
|
<script src="../../../../js/es6-promise.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/underscore.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../js/element-ui.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../component/followup/follow-bottom.js"></script>
|
|
|
<script src="../../../../component/followup/finish-followup-btn.js"></script>
|
|
|
<script src="../../../../api/http-request.js" type="text/javascript" charset="utf-8"></script>
|
|
|
<script src="../../../../api/fangshi-api.js"></script>
|
|
|
<script>
|
|
|
var Request = GetRequest();
|
|
|
new Vue({
|
|
|
el: "#app",
|
|
|
data: function () {
|
|
|
return {
|
|
|
finishedBtn: true,
|
|
|
editable: false,
|
|
|
isEditBtn: true,
|
|
|
symptom_other_dis: true,
|
|
|
other_drinking_type_dis: true,
|
|
|
dust_protective_measures_has_dis: true,
|
|
|
radiogen_protective_measures_has_dis: true,
|
|
|
physical_protective_measures_has_dis: true,
|
|
|
chemical_protective_measures_has_dis: true,
|
|
|
other_hazard_protective_measures_has_dis: true,
|
|
|
skin_other_dis: true,
|
|
|
sclera_other_dis: true,
|
|
|
lymphaden_other_dis: true,
|
|
|
rale_abnormal_dis: true,
|
|
|
tenderness_has_dis: true,
|
|
|
mass_has_dis: true,
|
|
|
hepatomegaly_has_dis: true,
|
|
|
spleen_big_has_dis: true,
|
|
|
shifting_dullness_has_dis: true,
|
|
|
anus_dre_other_dis: true,
|
|
|
vulva_abnormal_dis: true,
|
|
|
vagina_abnormal_dis: true,
|
|
|
cervical_abnormal_dis: true,
|
|
|
corpus_abnormal_dis: true,
|
|
|
appendix_abnormal_dis: true,
|
|
|
fundus_abnormal_dis: true,
|
|
|
breast_other_dis: true,
|
|
|
electrocardiogram_abnormal_dis: true,
|
|
|
chest_Xray_abnormal_dis: true,
|
|
|
abdomen_B_ultrasonic_abnormal_dis: true,
|
|
|
B_ultrasonic_other_abnormal_dis: true,
|
|
|
cervical_smear_abnormal_dis: true,
|
|
|
cerebrovascular_disease_other_dis: true,
|
|
|
nephropathy_other_dis: true,
|
|
|
heart_disease_other_dis: true,
|
|
|
vascular_disease_other_dis: true,
|
|
|
eye_disease_dis: true,
|
|
|
nervous_system_disease_has_dis: true,
|
|
|
other_system_disease_has_dis: true,
|
|
|
other_health_guidance_description_dis: true,
|
|
|
other_advice_description_dis: true,
|
|
|
goal_weight_dis: true,
|
|
|
health_examination_abnormal1_dis: true,
|
|
|
health_examination_abnormal2_dis: true,
|
|
|
health_examination_abnormal3_dis: true,
|
|
|
health_examination_abnormal4_dis: true,
|
|
|
breath_sounds_abnormal_dis: true,
|
|
|
dietary_habit_check: [],
|
|
|
symptom_check: [],
|
|
|
breast_check: [],
|
|
|
suggest_recheck_check: [],
|
|
|
dangerFacter_check: [],
|
|
|
drinking_type_check: [],
|
|
|
cerebrovascular_disease_check: [],
|
|
|
nephropathy_check: [],
|
|
|
heart_disease_check: [],
|
|
|
eye_disease_check: [],
|
|
|
vascular_disease_check: [],
|
|
|
oldmanData: {
|
|
|
regular_followup: '1',
|
|
|
chronic_health_management: '1',
|
|
|
suggest_recheck: '1',
|
|
|
suggest_referral: '1',
|
|
|
other_health_guidance: '1',
|
|
|
stop_smoking: '1',
|
|
|
healthy_drinking: '1',
|
|
|
diet: "1",
|
|
|
exercise: '1',
|
|
|
lose_weight: '1',
|
|
|
recommended_vaccination: '1',
|
|
|
other_advice: '1'
|
|
|
},
|
|
|
data1: "",
|
|
|
input: null,
|
|
|
radio: "",
|
|
|
followupId: Request['id'],
|
|
|
version: Request['version']
|
|
|
}
|
|
|
},
|
|
|
mounted: function () {
|
|
|
this.getData()
|
|
|
//获取随访详情
|
|
|
this.getStatus()
|
|
|
},
|
|
|
computed: {
|
|
|
rale: function () {
|
|
|
return this.oldmanData.rale
|
|
|
},
|
|
|
breath_sounds: function () {
|
|
|
return this.oldmanData.breath_sounds
|
|
|
},
|
|
|
dust_protective_measures: function () {
|
|
|
return this.oldmanData.dust_protective_measures
|
|
|
},
|
|
|
radiogen_protective_measures: function () {
|
|
|
return this.oldmanData.radiogen_protective_measures
|
|
|
},
|
|
|
physical_protective_measures: function () {
|
|
|
return this.oldmanData.physical_protective_measures
|
|
|
},
|
|
|
chemical_protective_measures: function () {
|
|
|
return this.oldmanData.chemical_protective_measures
|
|
|
},
|
|
|
other_hazard_protective_measures: function () {
|
|
|
return this.oldmanData.other_hazard_protective_measures
|
|
|
},
|
|
|
skin: function () {
|
|
|
return this.oldmanData.skin
|
|
|
},
|
|
|
sclera: function () {
|
|
|
return this.oldmanData.sclera
|
|
|
},
|
|
|
lymphaden: function () {
|
|
|
return this.oldmanData.lymphaden
|
|
|
},
|
|
|
barrel_chest: function () {
|
|
|
return this.oldmanData.barrel_chest
|
|
|
},
|
|
|
abdominal_tenderness: function () {
|
|
|
return this.oldmanData.abdominal_tenderness
|
|
|
},
|
|
|
abdominal_mass: function () {
|
|
|
return this.oldmanData.abdominal_mass
|
|
|
},
|
|
|
abdominal_hepatomegaly: function () {
|
|
|
return this.oldmanData.abdominal_hepatomegaly
|
|
|
},
|
|
|
abdominal_spleen_big: function () {
|
|
|
return this.oldmanData.abdominal_spleen_big
|
|
|
},
|
|
|
abdominal_shifting_dullness: function () {
|
|
|
return this.oldmanData.abdominal_shifting_dullness
|
|
|
},
|
|
|
anus_dre: function () {
|
|
|
return this.oldmanData.anus_dre
|
|
|
},
|
|
|
vulva: function () {
|
|
|
return this.oldmanData.vulva
|
|
|
},
|
|
|
vagina: function () {
|
|
|
return this.oldmanData.vagina
|
|
|
},
|
|
|
cervical: function () {
|
|
|
return this.oldmanData.cervical
|
|
|
},
|
|
|
corpus: function () {
|
|
|
return this.oldmanData.corpus
|
|
|
},
|
|
|
gynecologic_appendix: function () {
|
|
|
return this.oldmanData.gynecologic_appendix
|
|
|
},
|
|
|
fundus: function () {
|
|
|
return this.oldmanData.fundus
|
|
|
},
|
|
|
electrocardiogram: function () {
|
|
|
return this.oldmanData.electrocardiogram
|
|
|
},
|
|
|
chest_Xray: function () {
|
|
|
return this.oldmanData.chest_Xray
|
|
|
},
|
|
|
abdomen_B_ultrasonic: function () {
|
|
|
return this.oldmanData.abdomen_B_ultrasonic
|
|
|
},
|
|
|
B_ultrasonic_other: function () {
|
|
|
return this.oldmanData.B_ultrasonic_other
|
|
|
},
|
|
|
cervical_smear: function () {
|
|
|
return this.oldmanData.cervical_smear
|
|
|
},
|
|
|
nervous_system_disease: function () {
|
|
|
return this.oldmanData.nervous_system_disease
|
|
|
},
|
|
|
health_examination: function () {
|
|
|
return this.oldmanData.health_examination
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
dangerFacter_check: function (i) {
|
|
|
var a = i ? i.indexOf('7') : ''
|
|
|
var b = i ? i.indexOf('5') : ''
|
|
|
if (b > -1) {
|
|
|
this.goal_weight_dis = false
|
|
|
} else {
|
|
|
this.goal_weight_dis = true
|
|
|
this.goal_weight = ''
|
|
|
}
|
|
|
if (a > -1) {
|
|
|
this.other_advice_description_dis = false
|
|
|
} else {
|
|
|
this.other_advice_description_dis = true
|
|
|
this.oldmanData.other_advice_description = ''
|
|
|
}
|
|
|
},
|
|
|
suggest_recheck_check: function (i) {
|
|
|
var a = i ? i.indexOf('5') : ''
|
|
|
if (a > -1) {
|
|
|
this.other_health_guidance_description_dis = false
|
|
|
} else {
|
|
|
this.other_health_guidance_description_dis = true
|
|
|
this.oldmanData.other_health_guidance_description = ''
|
|
|
}
|
|
|
|
|
|
},
|
|
|
eye_disease_check: function (i) {
|
|
|
var a = i ? i.indexOf('5') : ''
|
|
|
if (a > -1) {
|
|
|
this.eye_disease_dis = false
|
|
|
} else {
|
|
|
this.eye_disease_dis = true
|
|
|
this.oldmanData.eye_disease_other = ''
|
|
|
}
|
|
|
},
|
|
|
vascular_disease_check: function (i) {
|
|
|
var a = i ? i.indexOf('4') : ''
|
|
|
if (a > -1) {
|
|
|
this.vascular_disease_other_dis = false
|
|
|
} else {
|
|
|
this.vascular_disease_other_dis = true
|
|
|
this.oldmanData.vascular_disease_other_dis = ''
|
|
|
}
|
|
|
},
|
|
|
heart_disease_check: function (i) {
|
|
|
var a = i ? i.indexOf('7') : ''
|
|
|
if (a > -1) {
|
|
|
this.heart_disease_other_dis = false
|
|
|
} else {
|
|
|
this.heart_disease_other_dis = true
|
|
|
this.oldmanData.heart_disease_other = ''
|
|
|
}
|
|
|
},
|
|
|
nephropathy_check: function (i) {
|
|
|
var a = i ? i.indexOf('6') : ''
|
|
|
if (a > -1) {
|
|
|
this.nephropathy_other_dis = false
|
|
|
} else {
|
|
|
this.nephropathy_other_dis = true
|
|
|
this.oldmanData.nephropathy_other = ''
|
|
|
}
|
|
|
},
|
|
|
cerebrovascular_disease_check: function (i) {
|
|
|
var a = i ? i.indexOf('6') : ''
|
|
|
if (a > -1) {
|
|
|
this.cerebrovascular_disease_other_dis = false
|
|
|
} else {
|
|
|
this.cerebrovascular_disease_other_dis = true
|
|
|
this.oldmanData.cerebrovascular_disease_other = ''
|
|
|
}
|
|
|
},
|
|
|
breast_check: function (i) {
|
|
|
var a = i ? i.indexOf('5') : ''
|
|
|
if (a > -1) {
|
|
|
this.breast_other_dis = false
|
|
|
} else {
|
|
|
this.breast_other_dis = true
|
|
|
this.oldmanData.breast_other = ''
|
|
|
}
|
|
|
},
|
|
|
symptom_check: function (i) {
|
|
|
var a = i ? i.indexOf('25') : ''
|
|
|
if (a > -1) {
|
|
|
this.symptom_other_dis = false
|
|
|
} else {
|
|
|
this.symptom_other_dis = true
|
|
|
this.oldmanData.symptom_other = ''
|
|
|
}
|
|
|
},
|
|
|
drinking_type_check: function (i) {
|
|
|
var a = i ? i > i.indexOf('5') : ""
|
|
|
if (a > -1) {
|
|
|
this.other_drinking_type_dis = false
|
|
|
} else {
|
|
|
this.other_drinking_type_dis = true
|
|
|
this.oldmanData.other_drinking_type = ''
|
|
|
}
|
|
|
},
|
|
|
breath_sounds: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.breath_sounds_abnormal_dis = false
|
|
|
} else {
|
|
|
this.breath_sounds_abnormal_dis = true
|
|
|
this.oldmanData.breath_sounds_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
other_system_disease: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.other_system_disease_has_dis = false
|
|
|
} else {
|
|
|
this.other_system_disease_has_dis = true
|
|
|
this.oldmanData.other_system_disease_has = ''
|
|
|
}
|
|
|
},
|
|
|
health_examination: function (i) {
|
|
|
if (i == '2') {
|
|
|
for (var i = 1; i < 5; i++) {
|
|
|
this['health_examination_abnormal' + i + '_dis'] = false
|
|
|
}
|
|
|
} else {
|
|
|
for (var i = 1; i < 5; i++) {
|
|
|
this['health_examination_abnormal' + i + '_dis'] = true
|
|
|
this.oldmanData['health_examination_abnormal' + i] = ''
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
nervous_system_disease: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.nervous_system_disease_has_dis = false
|
|
|
} else {
|
|
|
this.nervous_system_disease_has_dis = true
|
|
|
this.oldmanData.nervous_system_disease_has = ''
|
|
|
}
|
|
|
},
|
|
|
cervical_smear: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.cervical_smear_abnormal_dis = false
|
|
|
} else {
|
|
|
this.cervical_smear_abnormal_dis = true
|
|
|
this.oldmanData.cervical_smear_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
B_ultrasonic_other: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.B_ultrasonic_other_abnormal_dis = false
|
|
|
} else {
|
|
|
this.B_ultrasonic_other_abnormal_dis = true
|
|
|
this.oldmanData.B_ultrasonic_other_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
abdomen_B_ultrasonic: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.abdomen_B_ultrasonic_abnormal_dis = false
|
|
|
} else {
|
|
|
this.abdomen_B_ultrasonic_abnormal_dis = true
|
|
|
this.oldmanData.abdomen_B_ultrasonic_abnormal_dis = ''
|
|
|
}
|
|
|
},
|
|
|
chest_Xray: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.chest_Xray_abnormal_dis = false
|
|
|
} else {
|
|
|
this.chest_Xray_abnormal_dis = true
|
|
|
this.oldmanData.chest_Xray_abnormal_dis = ''
|
|
|
}
|
|
|
},
|
|
|
electrocardiogram: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.electrocardiogram_abnormal_dis = false
|
|
|
} else {
|
|
|
this.electrocardiogram_abnormal_dis = true
|
|
|
this.oldmanData.electrocardiogram_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
fundus: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.fundus_abnormal_dis = false
|
|
|
} else {
|
|
|
this.fundus_abnormal_dis = true
|
|
|
this.oldmanData.fundus_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
gynecologic_appendix: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.appendix_abnormal_dis = false
|
|
|
} else {
|
|
|
this.appendix_abnormal_dis = true
|
|
|
this.oldmanData.appendix_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
corpus: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.corpus_abnormal_dis = false
|
|
|
} else {
|
|
|
this.corpus_abnormal_dis = true
|
|
|
this.oldmanData.corpus_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
cervical: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.cervical_abnormal_dis = false
|
|
|
} else {
|
|
|
this.cervical_abnormal_dis = true
|
|
|
this.oldmanData.cervical_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
vagina: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.vagina_abnormal_dis = false
|
|
|
} else {
|
|
|
this.vagina_abnormal_dis = true
|
|
|
this.oldmanData.vagina_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
vulva: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.vulva_abnormal_dis = false
|
|
|
} else {
|
|
|
this.vulva_abnormal_dis = true
|
|
|
this.oldmanData.vulva_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
anus_dre: function (i) {
|
|
|
if (i == '5') {
|
|
|
this.anus_dre_other_dis = false
|
|
|
} else {
|
|
|
this.anus_dre_other_dis = true
|
|
|
this.oldmanData.anus_dre_other = ''
|
|
|
}
|
|
|
|
|
|
},
|
|
|
abdominal_shifting_dullness: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.shifting_dullness_has = false
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
this.shifting_dullness_has = true
|
|
|
this.oldmanData.spleen_big_has = ''
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
editData: function () {
|
|
|
var vm = this
|
|
|
console.log(this.oldmanData)
|
|
|
this.oldmanData.create_time = null
|
|
|
this.oldmanData.version = '1' //版本号
|
|
|
// fangshiAPI.saveOlderPeopleHealthCheckRecord({ followupId: '3', postpartumVisitDetails: JSON.stringify(this.postpartumVisitDetails) }).then(function (res) {
|
|
|
// if (res.status == 200) {
|
|
|
// top.toastr.info('保存成功')
|
|
|
// } else {
|
|
|
// top.toastr.error(res.msg);
|
|
|
// }
|
|
|
// })
|
|
|
},
|
|
|
abdominal_spleen_big: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.spleen_big_has_dis = false
|
|
|
} else {
|
|
|
this.spleen_big_has_dis = true
|
|
|
this.oldmanData.spleen_big_has = ''
|
|
|
}
|
|
|
},
|
|
|
abdominal_hepatomegaly: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.hepatomegaly_has_dis = false
|
|
|
} else {
|
|
|
this.hepatomegaly_has_dis = true
|
|
|
this.oldmanData.hepatomegaly_has = ''
|
|
|
}
|
|
|
},
|
|
|
abdominal_mass: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.mass_has_dis = false
|
|
|
} else {
|
|
|
this.mass_has_dis = true
|
|
|
this.oldmanData.mass_has = ''
|
|
|
}
|
|
|
},
|
|
|
abdominal_tenderness: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.tenderness_has_dis = false
|
|
|
} else {
|
|
|
this.tenderness_has_dis = true
|
|
|
this.oldmanData.tenderness_has = ''
|
|
|
}
|
|
|
},
|
|
|
rale: function (i) {
|
|
|
if (i == '4') {
|
|
|
this.rale_abnormal_dis = false
|
|
|
} else {
|
|
|
this.rale_abnormal_dis = true
|
|
|
this.oldmanData.rale_abnormal = ''
|
|
|
}
|
|
|
},
|
|
|
lymphaden: function (i) {
|
|
|
if (i == '4') {
|
|
|
this.lymphaden_other_dis = false
|
|
|
} else {
|
|
|
this.lymphaden_other_dis = true
|
|
|
this.oldmanData.lymphaden_other = ''
|
|
|
}
|
|
|
},
|
|
|
sclera: function (i) {
|
|
|
if (i == '4') {
|
|
|
this.sclera_other_dis = false
|
|
|
} else {
|
|
|
this.sclera_other_dis = true
|
|
|
this.oldmanData.sclera_other = ''
|
|
|
}
|
|
|
},
|
|
|
skin: function (i) {
|
|
|
if (i == '7') {
|
|
|
this.skin_other_dis = false
|
|
|
} else {
|
|
|
this.skin_other_dis = true
|
|
|
this.oldmanData.skin_other = ''
|
|
|
}
|
|
|
},
|
|
|
other_hazard_protective_measures: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.other_hazard_protective_measures_has_dis = false
|
|
|
} else {
|
|
|
this.other_hazard_protective_measures_has_dis = true
|
|
|
this.oldmanData.other_hazard_protective_measures_has = ''
|
|
|
}
|
|
|
},
|
|
|
chemical_protective_measures: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.chemical_protective_measures_has_dis = false
|
|
|
} else {
|
|
|
this.chemical_protective_measures_has_dis = true
|
|
|
this.oldmanData.chemical_protective_measures_has = ''
|
|
|
}
|
|
|
},
|
|
|
dust_protective_measures: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.dust_protective_measures_has_dis = false
|
|
|
} else {
|
|
|
this.dust_protective_measures_has_dis = true
|
|
|
this.oldmanData.dust_protective_measures_has = ''
|
|
|
}
|
|
|
},
|
|
|
radiogen_protective_measures: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.radiogen_protective_measures_has_dis = false
|
|
|
} else {
|
|
|
this.radiogen_protective_measures_has_dis = true
|
|
|
this.oldmanData.radiogen_protective_measures_has = ''
|
|
|
}
|
|
|
},
|
|
|
physical_protective_measures: function (i) {
|
|
|
if (i == '2') {
|
|
|
this.physical_protective_measures_has_dis = false
|
|
|
} else {
|
|
|
this.physical_protective_measures_has_dis = true
|
|
|
this.oldmanData.physical_protective_measures_has = ''
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
editBtn: function () {
|
|
|
this.isEditBtn = !this.isEditBtn
|
|
|
if (this.isEditBtn == true) {
|
|
|
var btn = document.getElementsByClassName('button')[0]
|
|
|
btn.innerHTML = '编辑'
|
|
|
this.editable = false
|
|
|
this.editData()
|
|
|
} else if (this.isEditBtn == false) {
|
|
|
var btn = document.getElementsByClassName('button')[0]
|
|
|
btn.innerHTML = '保存'
|
|
|
this.editable = true
|
|
|
methods: {
|
|
|
getData: function () {
|
|
|
var vm = this
|
|
|
fangshiAPI.getOlderPeopleHealthCheckRecord({ followupId: this.followupId || '2' }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
var data = res.data
|
|
|
if (data != null) {
|
|
|
vm.oldmanData = data
|
|
|
var vmO = vm.oldmanData
|
|
|
|
|
|
var arr = "symptom,breast,drinking_type,dietary_habit,cerebrovascular_disease,nephropathy,heart_disease,eye_disease,vascular_disease".split(",")
|
|
|
for (var i = 0; i < arr.length; i++) {
|
|
|
vm[arr[i] + "_check"] = data[arr[i]] ? data[arr[i]].split(',') : []
|
|
|
}
|
|
|
var arr2 = "regular_followup,chronic_health_management,suggest_recheck,suggest_referral,other_health_guidance".split(",")
|
|
|
for (var i = 0; i < arr2.length; i++) {
|
|
|
if (data[arr2[i]] == 2) {
|
|
|
vm.suggest_recheck_check.push((i + 1 + ''))
|
|
|
console.log(vm.suggest_recheck_check)
|
|
|
}
|
|
|
}
|
|
|
var arr3 = "stop_smoking,healthy_drinking,diet,exercise,lose_weight,recommended_vaccination,other_advice".split(",")
|
|
|
for (var i = 0; i < arr3.length; i++) {
|
|
|
if (data[arr3[i]] == 2) { vm.dangerFacter_check.push((i + 1 + '')) }
|
|
|
}
|
|
|
}
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
editData: function () {
|
|
|
var vm = this
|
|
|
var vmO = vm.oldmanData
|
|
|
vmO.symptom = vm.symptom_check ? vm.symptom_check.join(',') : ""
|
|
|
vmO.breast = vm.breast_check ? vm.breast_check.join(',') : ""
|
|
|
vmO.drinking_type = vm.drinking_type_check ? vm.drinking_type_check.join(',') : ""
|
|
|
vmO.dietary_habit = vm.dietary_habit_check ? vm.dietary_habit_check.join(',') : ""
|
|
|
vmO.cerebrovascular_disease = vm.cerebrovascular_disease_check ? vm.cerebrovascular_disease_check.join(',') : ""
|
|
|
vmO.nephropathy = vm.nephropathy_check ? vm.nephropathy_check.join(',') : ""
|
|
|
vmO.heart_disease = vm.heart_disease_check ? vm.heart_disease_check.join(',') : ""
|
|
|
vmO.vascular_disease = vm.vascular_disease_check ? vm.vascular_disease_check.join(',') : ""
|
|
|
vmO.eye_disease = vm.eye_disease_check ? vm.eye_disease_check.join(',') : ''
|
|
|
|
|
|
var arr = ["", "regular_followup", "chronic_health_management", "suggest_recheck", "suggest_referral", "other_health_guidance"]
|
|
|
vm.suggest_recheck_check.map(i => {
|
|
|
arr[i] && (vmO[arr[i]] = '2')
|
|
|
})
|
|
|
|
|
|
var arr2 = ["", "stop_smoking", "healthy_drinking", "diet", "exercise", "lose_weight", "recommended_vaccination", "other_advice"]
|
|
|
vm.dangerFacter_check.map(i => {
|
|
|
arr2[i] && (vmO[arr2[i]] = '2')
|
|
|
})
|
|
|
this.oldmanData.create_time = null
|
|
|
this.oldmanData.version = this.version || 'v1' //版本号
|
|
|
fangshiAPI.saveOlderPeopleHealthCheckRecord({ followupId: this.followupId || '2', olderPeopleHealthCheckData: JSON.stringify(this.oldmanData) }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
//判断是否完成随访,未完成则将完成按钮显示出来
|
|
|
if (vm.sfStatus != 1) {
|
|
|
vm.finishedBtn = false
|
|
|
} else {
|
|
|
vm.finishedBtn = true
|
|
|
}
|
|
|
vm.getStatus()
|
|
|
top.toastr.info('保存成功')
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
editBtn: function () {
|
|
|
this.isEditBtn = !this.isEditBtn
|
|
|
if (this.isEditBtn == true) {
|
|
|
var btn = document.getElementsByClassName('button')[0]
|
|
|
btn.innerHTML = '编辑'
|
|
|
this.editable = false
|
|
|
this.editData()
|
|
|
} else if (this.isEditBtn == false) {
|
|
|
var btn = document.getElementsByClassName('button')[0]
|
|
|
btn.innerHTML = '保存'
|
|
|
this.editable = true
|
|
|
}
|
|
|
},
|
|
|
//获取当前随访状态信息 Request['id']||'1'
|
|
|
getStatus: function () {
|
|
|
var vm = this
|
|
|
fangshiAPI.getFollowupInfo({ followupId: this.followupId || '1888107' }).then(function (res) {
|
|
|
if (res.status == 200) {
|
|
|
vm.sfStatus = res.data.status
|
|
|
} else {
|
|
|
top.toastr.error(res.msg);
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
getFinishfChild: function (msg) {
|
|
|
this.finishedBtn = msg
|
|
|
this.getStatus()
|
|
|
},
|
|
|
Nnmber: function (event) {
|
|
|
if (!event.keyCode >= 48 && event.keyCode <= 57) {
|
|
|
return top.toastr.info('保存成功')
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
</script>
|
|
|
})
|
|
|
</script>
|
|
|
</body>
|
|
|
|
|
|
</html>
|