|
@@ -241,6 +241,7 @@ function renderPage(pageSet){
|
|
|
const hasMedical = hasTab("医学知识",setInfo)
|
|
|
const hasFollowUp = hasTab("随访计划",setInfo)
|
|
|
const hasTcm = hasTab("中医辅助", setInfo);
|
|
|
+ console.log(hasFollowUp)
|
|
|
//所有模块都未开启配置,显示功能未开启(无tab)
|
|
|
if(hasAuxiliary.status===0&&hasMedical.status===0&&hasFollowUp.status===0&&hasTcm.status===0){
|
|
|
const nullTxt = `<div class="empty-box" style="left: -20px;display: block;">
|
|
@@ -256,6 +257,9 @@ function renderPage(pageSet){
|
|
|
if(!mrId){
|
|
|
return
|
|
|
}
|
|
|
+ if(hasFollowUp){
|
|
|
+ renderFollowUp(msg)
|
|
|
+ }
|
|
|
const planDetail = hasAuxiliary.planDetails;
|
|
|
const configs = planDetail.find((it)=>it.status!==0);
|
|
|
if(!configs){ //没有开启辅助信息各项配置
|
|
@@ -283,9 +287,6 @@ function renderPage(pageSet){
|
|
|
allInterface++
|
|
|
}
|
|
|
}
|
|
|
- if(hasFollowUp){
|
|
|
- renderFollowUp(msg)
|
|
|
- }
|
|
|
}
|
|
|
|
|
|
function renderPushData(){
|