|
@ -100,7 +100,7 @@
|
|
<div class="flex-box-item">体征记录:<span v-if="!noTiZhong"><span v-text="tizhongRecord.value1+'kg'"></span> 身高<span v-text="tizhongRecord.value2+'cm'"></span></span><span v-else>暂无体征</span></div>
|
|
<div class="flex-box-item">体征记录:<span v-if="!noTiZhong"><span v-text="tizhongRecord.value1+'kg'"></span> 身高<span v-text="tizhongRecord.value2+'cm'"></span></span><span v-else>暂无体征</span></div>
|
|
</div>
|
|
</div>
|
|
<div class="flex-box">
|
|
<div class="flex-box">
|
|
<div class="flex-box-item">处理情况:<span>健康跟踪</span></div>
|
|
|
|
|
|
<div class="flex-box-item">处理情况:<span>{{dealAction}}</span></div>
|
|
<div class="flex-box-item">筛查机构:<span v-text="doctorInfo.hospitalName"></span></div>
|
|
<div class="flex-box-item">筛查机构:<span v-text="doctorInfo.hospitalName"></span></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@ -194,7 +194,8 @@
|
|
noTiZhong:true,
|
|
noTiZhong:true,
|
|
doctorInfo:{code:wlyyAgentForDoc.uid},
|
|
doctorInfo:{code:wlyyAgentForDoc.uid},
|
|
resultCode:httpData['resultCode'],
|
|
resultCode:httpData['resultCode'],
|
|
isView: httpData['isView']|| false
|
|
|
|
|
|
isView: httpData['isView']|| false,
|
|
|
|
dealAction:[]
|
|
},
|
|
},
|
|
mounted: function(){
|
|
mounted: function(){
|
|
this.getScreenResultDetail()
|
|
this.getScreenResultDetail()
|
|
@ -258,6 +259,24 @@
|
|
data && (vm.answer=data.answer,vm.userInfo=data.info,vm.result=data.result);
|
|
data && (vm.answer=data.answer,vm.userInfo=data.info,vm.result=data.result);
|
|
data && data.info && data.info.code && vm.getHealth();
|
|
data && data.info && data.info.code && vm.getHealth();
|
|
data && (vm.specialDoctorName = data.specialDoctorName);
|
|
data && (vm.specialDoctorName = data.specialDoctorName);
|
|
|
|
if(userInfo.isDanger==1 || userInfo.is_danger==1){
|
|
|
|
//只有高危的筛查需要处理
|
|
|
|
if(userInfo.following == 1){
|
|
|
|
vm.dealAction.push("已跟踪");
|
|
|
|
}
|
|
|
|
if(userInfo.isOrder == 1 || userInfo.is_order == 1){
|
|
|
|
vm.dealAction.push("已预约转诊");
|
|
|
|
}
|
|
|
|
if(userInfo.isOrder == 2 || userInfo.is_order == 2){
|
|
|
|
vm.dealAction.push("已接诊");
|
|
|
|
}
|
|
|
|
if(dealAction.length == 0){
|
|
|
|
vm.dealAction.push("待处理");
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
vm.dealAction.push("日常健康管理");
|
|
|
|
}
|
|
|
|
vm.dealAction=vm.dealAction.join(',');
|
|
}else{
|
|
}else{
|
|
top.layer.msg(res.msg, {icon: 5});
|
|
top.layer.msg(res.msg, {icon: 5});
|
|
}
|
|
}
|