|
@@ -336,13 +336,15 @@ function renderPushWarning(){
|
|
|
let noteList = result.noteList || [] //检查内容注意事项
|
|
|
let dubugStr = result.dubugStr || [] //注意调试信息
|
|
|
let otherList = result.otherList || [] //其他提醒
|
|
|
- $('.moduleItem.crivalue').append(titleStr('warning'))
|
|
|
- renderBillingPush(billMsgList,'开单合理性提醒')
|
|
|
- renderBillingPush(highRiskList,'高风险提示')
|
|
|
- renderBillingPush(criticalValList,'危急值提醒')
|
|
|
- renderBillingPush(noteList,'检查内容注意事项')
|
|
|
- renderBillingPush(otherList,'其他提醒')
|
|
|
- moreInfo()
|
|
|
+ //$('.moduleItem.crivalue').append(titleStr('warning'))
|
|
|
+ renderBillingPush(billMsgList,'开单合理性提醒','rationali')
|
|
|
+ renderBillingPush(highRiskList,'高风险提示','highrisk')
|
|
|
+ renderBillingPush(criticalValList,'危急值提醒','crivalue')
|
|
|
+ //renderBillingPush(noteList,'检查内容注意事项')
|
|
|
+ renderBillingPush(otherList,'其他提醒','otherremind')
|
|
|
+ //moreInfo()
|
|
|
+ $(".moduleItem.tips").wrapAll("<div class='tips-cont'></div>");
|
|
|
+ $(titleStr('warning')).insertBefore('.tips-cont .moduleItem:first-child')
|
|
|
// renderBillingPush(dubugStr,'注意调试信息')
|
|
|
|
|
|
}
|
|
@@ -400,7 +402,7 @@ function renderwriteStandardPage(list,casewritingNum){
|
|
|
bindSlideCaseWriting()
|
|
|
}
|
|
|
}
|
|
|
-function renderBillingPush(list,name){
|
|
|
+function renderBillingPush(list,name,code){
|
|
|
if(list.length === 0){
|
|
|
return
|
|
|
}
|
|
@@ -414,8 +416,8 @@ function renderBillingPush(list,name){
|
|
|
${titleStr}
|
|
|
${str}
|
|
|
</div>`
|
|
|
- $(".crivalue").append(boxStr)
|
|
|
- $('.moduleItem.crivalue').css("display", "block")
|
|
|
+ $("."+code).append(boxStr)
|
|
|
+ $('.moduleItem.'+code).addClass("tips").css("display", "block")
|
|
|
}
|
|
|
|
|
|
|