|
@ -549,6 +549,33 @@
|
|
</el-checkbox-group>
|
|
</el-checkbox-group>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="col-w120 c-t-center">本次随访分类
|
|
|
|
</td>
|
|
|
|
<td colspan="2">
|
|
|
|
<el-radio-group v-model="severeMentalDisorderData.followup_class" :disabled="!editable">
|
|
|
|
<el-radio :disabled="!editable" label="1">不稳定</el-radio>
|
|
|
|
<el-radio :disabled="!editable" label="2">基本稳定</el-radio>
|
|
|
|
<el-radio :disabled="!editable" label="3">稳定</el-radio>
|
|
|
|
</el-radio-group>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="col-w120 c-t-center">下次随访日期
|
|
|
|
</td>
|
|
|
|
<td colspan="2">
|
|
|
|
<el-date-picker :readonly="!editable" v-model="severeMentalDisorderData.followup_next_date" value-format="yyyy-MM-dd" type="date"
|
|
|
|
placeholder="选择日期">
|
|
|
|
</el-date-picker>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td class="col-w120 c-t-center">随访医生签名
|
|
|
|
</td>
|
|
|
|
<td colspan="2">
|
|
|
|
<el-input :readonly="!editable" v-model="severeMentalDisorderData.doctor_name" placeholder="" clearable></el-input>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
<follow-bottom :followupId="followupId"></follow-bottom>
|
|
<follow-bottom :followupId="followupId"></follow-bottom>
|
|
</div>
|
|
</div>
|
|
@ -612,7 +639,10 @@
|
|
rehabilitation_training: '0',
|
|
rehabilitation_training: '0',
|
|
rehabilitation_learning_ability: '0',
|
|
rehabilitation_learning_ability: '0',
|
|
rehabilitation_sociability: '0',
|
|
rehabilitation_sociability: '0',
|
|
rehabilitation_other: "0"
|
|
|
|
|
|
rehabilitation_other: "0",
|
|
|
|
followup_class: "",
|
|
|
|
followup_next_date: "",
|
|
|
|
doctor_name: ""
|
|
},
|
|
},
|
|
followupId: Request['id'],
|
|
followupId: Request['id'],
|
|
version: Request['version']
|
|
version: Request['version']
|
|
@ -784,7 +814,9 @@
|
|
vmS.treatment_effects = data.treatment_effects ? data.treatment_effects.toString() : ''
|
|
vmS.treatment_effects = data.treatment_effects ? data.treatment_effects.toString() : ''
|
|
vmS.referral = data.referral ? data.referral.toString() : ''
|
|
vmS.referral = data.referral ? data.referral.toString() : ''
|
|
vmS.is_referral = data.is_referral ? data.is_referral.toString() : ''
|
|
vmS.is_referral = data.is_referral ? data.is_referral.toString() : ''
|
|
|
|
|
|
|
|
vmS.followup_class = data.followup_class || ""
|
|
|
|
vmS.followup_next_date = data.followup_next_date || ""
|
|
|
|
vmS.doctor_name = data.doctor_name || ""
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
top.toastr.error(res.msg);
|
|
top.toastr.error(res.msg);
|