|
@@ -24,12 +24,14 @@ let showImg = require('./../images/show2.png').replace(/^undefined/g, '')
|
|
|
let collapseImg = require('./../images/collapse2.png').replace(/^undefined/g, '')
|
|
|
let treatDisName
|
|
|
let generalTreatInfo
|
|
|
+const { renderFollowUp } = require('./followUp.js');
|
|
|
|
|
|
setWidth()
|
|
|
let moduleConfig={
|
|
|
auxiliary:"recommendWrap",
|
|
|
qc:"qcWrap",
|
|
|
- medical:"medicalKonwledgeWrap"
|
|
|
+ medical:"medicalKonwledgeWrap",
|
|
|
+ followup:'followUpWrap'
|
|
|
}
|
|
|
let allInterface = 0
|
|
|
let hasCompleteTnterface = 0
|
|
@@ -111,7 +113,7 @@ function renderPage(pageSet){
|
|
|
allInterface++
|
|
|
}
|
|
|
if(hasFollowUp){
|
|
|
- // renderFollowUp(msg)
|
|
|
+ renderFollowUp(msg)
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -482,7 +484,7 @@ function renderPushWarning(){
|
|
|
}
|
|
|
if(hasCompleteTnterface === allInterface){
|
|
|
$('.loading').css("display","none")
|
|
|
- if(moduleNum === 0){
|
|
|
+ if(moduleNum === 0){//console.log(999)
|
|
|
empty()
|
|
|
}
|
|
|
}
|
|
@@ -661,4 +663,9 @@ $(function(){
|
|
|
localStorage.setItem('versionTime',ver.replace("=new",""));
|
|
|
openNewWin("version.html");
|
|
|
});
|
|
|
-})
|
|
|
+})
|
|
|
+
|
|
|
+function empty(){
|
|
|
+ // $(".responsibility").css("display","none")
|
|
|
+ // $('.recommendWrap .empty').css("display","block")
|
|
|
+}
|