|
@@ -485,7 +485,9 @@ function renderwriteStandardPage(list){
|
|
|
$('.moduleItem.casewriting').css("display","block")
|
|
|
}
|
|
|
}
|
|
|
+function computeTipsHeight(){
|
|
|
|
|
|
+}
|
|
|
function renderPushWarning(){
|
|
|
return getPusgWarning().then(res =>{
|
|
|
hasCompleteTnterface++
|
|
@@ -497,12 +499,12 @@ function renderPushWarning(){
|
|
|
let noteList = result.noteList || [] //检查内容注意事项
|
|
|
let dubugStr = result.dubugStr || [] //注意调试信息
|
|
|
let otherList = result.otherList || [] //其他提醒
|
|
|
- $('.moduleItem.tips .moduleItemTitBox').append(titleStr('warning'))
|
|
|
- renderBillingPush(billMsgList,'开单合理性')
|
|
|
- renderBillingPush(highRiskList,'高风险提示')
|
|
|
- renderBillingPush(criticalValList,'危急值提醒')
|
|
|
+ $('.moduleItem.rationali .moduleItemTitBox').append(titleStr('warning'))
|
|
|
+ renderBillingPush(billMsgList,'开单合理性','rationali')
|
|
|
+ renderBillingPush(highRiskList,'高风险提示','highrisk')
|
|
|
+ renderBillingPush(criticalValList,'危急值提醒','crivalue')
|
|
|
renderBillingPush(noteList,'检查注意事项')
|
|
|
- renderBillingPush(otherList,'其他提醒')
|
|
|
+ renderBillingPush(otherList,'其他提醒','otherremind')
|
|
|
moreInfo()
|
|
|
if($(".moduleItem.tips")){
|
|
|
let tipsHei = $(".moduleItem.tips")[0].scrollHeight
|
|
@@ -525,7 +527,7 @@ function renderPushWarning(){
|
|
|
|
|
|
})
|
|
|
}
|
|
|
-function renderBillingPush(list,name){
|
|
|
+function renderBillingPush(list,name,code){
|
|
|
if(list.length === 0){
|
|
|
return
|
|
|
}
|
|
@@ -538,8 +540,8 @@ function renderBillingPush(list,name){
|
|
|
${titleStr}
|
|
|
${str}
|
|
|
</div>`
|
|
|
- $(".tips").append(boxStr)
|
|
|
- $('.moduleItem.tips').css("display","block")
|
|
|
+ $("."+code).append(boxStr)
|
|
|
+ $('.moduleItem.'+code).addClass("tips").css("display","block")
|
|
|
}
|
|
|
function renderLongStr(name,longStr,location){
|
|
|
if(!longStr){
|