|
@@ -108,7 +108,7 @@ function getPageInfo() {
|
|
|
const diagWaring = pushResult.dis&&pushResult.dis['警惕'] || [] // 推荐警惕诊断
|
|
|
const symptomRecommend = pushResult.symptom || [] //推荐问诊症状
|
|
|
const physiExamRecommend = pushResult.vital || [] //推荐体格检查
|
|
|
- const diagRecommend = diagPossible.concat(diagDoubt, diagDeter) //推荐诊断
|
|
|
+ const diagRecommend = diagDeter.concat(diagDoubt, diagPossible) //推荐诊断
|
|
|
const labRecommend = pushResult.lab || []
|
|
|
const pacsRecommend = pushResult.pacs || []
|
|
|
const medicalIndications = pushResult.medicalIndications || []
|
|
@@ -156,10 +156,9 @@ function getPageInfo() {
|
|
|
moreInfo()
|
|
|
break;
|
|
|
default:
|
|
|
- return
|
|
|
+ break;
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
function bindTab() {
|
|
|
if(showTab == '1') {
|
|
|
$('.infoTabBox .tipsTab').addClass('activeTab')
|