|
@@ -56,7 +56,8 @@ function getInfomation() {
|
|
|
return;
|
|
|
}
|
|
|
var detailList = data.details
|
|
|
- var scale = data.scale
|
|
|
+ var isCalculate = data.id===179208; //是否是写死的计算公式
|
|
|
+ var scale = data.scale||isCalculate;
|
|
|
var staticKnowList = detailList['静态知识']
|
|
|
var noticeInfo = detailList['注意事项']
|
|
|
var clinicalPathwayInfo = detailList['临床路径']
|
|
@@ -69,6 +70,7 @@ function getInfomation() {
|
|
|
noticeInfo && renderContent(noticeInfo, 'notice')
|
|
|
clinicalPathwayInfo && renderContent(clinicalPathwayInfo, 'clinicalPathway')
|
|
|
scaleInfo && renderContentscale(scaleInfo, 'scale', name)
|
|
|
+ isCalculate && renderCalculate();
|
|
|
$('.content img').bind('contextmenu', function () {
|
|
|
return false
|
|
|
})
|
|
@@ -118,7 +120,12 @@ function renderContent(list, contentWrapClassName) {
|
|
|
adjustHeight();
|
|
|
adjustWidth()
|
|
|
}
|
|
|
+//计算公式写死
|
|
|
+function renderCalculate(){
|
|
|
|
|
|
+}
|
|
|
+
|
|
|
+//量表评估内容
|
|
|
function renderContentscale(list, contentWrapClassName, name) {
|
|
|
var pushInfo = []
|
|
|
var textType = []
|