|
@@ -86,7 +86,7 @@ $(function () {
|
|
|
$(".page").on("click", function () {
|
|
|
$(".info-item .cont,.flaw-item,td").removeClass("active"); //清空缺陷定位背景
|
|
|
const title = $(this).attr("code");
|
|
|
- if (title === "缺陷总览" || title === "谈话告知书" || title === "知情同意书" || title === '医嘱信息' || title === '检验信息' || title === '检查信息' || title === '护理信息') {
|
|
|
+ if (title === "缺陷总览" || title === "谈话告知书" || title === "知情同意书" || title === '医嘱信息' || title === '检验信息' || title === '检查信息' || title === '护理信息' || title === '其他信息') {
|
|
|
if (title === "缺陷总览") {
|
|
|
getRecordDetailUpdate()
|
|
|
}
|
|
@@ -122,25 +122,31 @@ $(function () {
|
|
|
$("#contentIframeIn").contents().find(".adviceWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
});
|
|
|
} else if (title === '检验信息') {
|
|
|
- $("#contentIframeIn,#assistIframeIn,#pacsDetailIframeIn,#contentNursing").css("display", "none")
|
|
|
+ $("#contentIframeIn,#assistIframeIn,#pacsDetailIframeIn,#contentNursing,#contentOther").css("display", "none")
|
|
|
$("#pacsIframeIn").css({ display: 'block' }).attr("src", 'pacs.html').contents().find(".pacsWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
$(window).resize(function () {
|
|
|
$("#pacsIframeIn").contents().find(".pacsWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
});
|
|
|
} else if (title === '检查信息') {
|
|
|
- $("#contentIframeIn,#pacsIframeIn,#pacsDetailIframeIn,#contentNursing").css("display", "none")
|
|
|
+ $("#contentIframeIn,#pacsIframeIn,#pacsDetailIframeIn,#contentNursing,#contentOther").css("display", "none")
|
|
|
$("#assistIframeIn").css({ display: 'block' }).attr("src", 'assist.html').contents().find(".assistWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
$(window).resize(function () {
|
|
|
$("#assistIframeIn").contents().find(".assistWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
});
|
|
|
} else if (title === '护理信息') {
|
|
|
- $("#pacsIframeIn,#assistIframeIn,#pacsDetailIframeIn,#contentIframeIn").css("display", "none")
|
|
|
+ $("#pacsIframeIn,#assistIframeIn,#pacsDetailIframeIn,#contentIframeIn,#contentOther").css("display", "none")
|
|
|
$("#contentNursing").css({ display: 'block' }).attr("src", 'nursing.html').contents().find(".nursingWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
$(window).resize(function () {
|
|
|
$("#contentNursing").contents().find(".nursingWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
});
|
|
|
+ } else if (title === '其他信息') {
|
|
|
+ $("#pacsIframeIn,#assistIframeIn,#pacsDetailIframeIn,#contentIframeIn,#contentNursing").css("display", "none")
|
|
|
+ $("#contentOther").css({ display: 'block' }).attr("src", 'other.html').contents().find(".otherWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
+ $(window).resize(function () {
|
|
|
+ $("#contentOther").contents().find(".otherWrp").height(window.innerHeight - $("#patientInfo").height() - 20 + 'px')
|
|
|
+ });
|
|
|
} else {
|
|
|
- $("#contentIframeIn,#pacsIframeIn,#pacsDetailIframeIn,#assistIframeIn,#contentNursing").css({ display: 'none' })
|
|
|
+ $("#contentIframeIn,#pacsIframeIn,#pacsDetailIframeIn,#assistIframeIn,#contentNursing,#contentOther").css({ display: 'none' })
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -577,7 +583,7 @@ $(function () {
|
|
|
appealExplain: $("#delModal #qcInfo").val(),
|
|
|
appealOperationType: info.appealOperationType ? info.appealOperationType : 0,
|
|
|
appealType: 1,
|
|
|
- checkId: $(".checker-drop-input").attr("code") == "输血/血制品病程记录"?'输血血制品病程记录':$(".checker-drop-input").attr("code"),
|
|
|
+ checkId: $(".checker-drop-input").attr("code") == "输血/血制品病程记录" ? '输血血制品病程记录' : $(".checker-drop-input").attr("code"),
|
|
|
modeId: info.modelId,
|
|
|
modeName: info.modelName,
|
|
|
qcresultDetailId: info.id,
|