|
@@ -64,7 +64,7 @@ function getApprovedView() {
|
|
|
id: data.qcresultDetailId,
|
|
|
casesScore: appealExamineRecordDTOList[0].casesScore,
|
|
|
msg: appealExamineRecordDTOList[0].msg,
|
|
|
- score: appealExamineRecordDTOList[0].qcresultDetaiValue,
|
|
|
+ score: appealExamineRecordDTOList[0].value,
|
|
|
isReject: appealExamineRecordDTOList[0].isReject,
|
|
|
explainInfo: appealExamineRecordDTOList[0].explainInfo,
|
|
|
}
|
|
@@ -133,7 +133,7 @@ function getCon(data) {
|
|
|
<p class="con-title">病案详情:<span class="goDetail">查看</span></p>`;
|
|
|
$('.content').append(str);
|
|
|
$('.goDetail').on('click', function (e) {
|
|
|
- scoreDetail(data.behospitalCode, data.age, 'YH-BLZK-ZKSSKS', data.name,data.casesName)
|
|
|
+ scoreDetail(data.behospitalCode, data.age, 'YH-BLZK-ZKSSKS', data.name, data.casesName)
|
|
|
})
|
|
|
|
|
|
}
|
|
@@ -165,9 +165,9 @@ function getHistory(data) {
|
|
|
}
|
|
|
|
|
|
|
|
|
-function scoreDetail(id, age, code, name,casesName) {
|
|
|
+function scoreDetail(id, age, code, name, casesName) {
|
|
|
const logoParam = getLogoParam();
|
|
|
- window.open(`./appealUserPage.html?id=${id}&age=${age}&code=${code}&hid=${getCookie('hospitalid')}&name=${name}&form=44&casesName=${casesName}` + logoParam )
|
|
|
+ window.open(`./appealUserPage.html?id=${id}&age=${age}&code=${code}&hid=${getCookie('hospitalid')}&name=${name}&form=44&casesName=${casesName}` + logoParam)
|
|
|
}
|
|
|
|
|
|
$(document).on("click", "input[type=radio][value=1]", (e) => {
|
|
@@ -179,6 +179,7 @@ $(document).on("click", "input[type=radio][value=2]", (e) => {
|
|
|
$(document).on("click", ".btn-sure", (e) => {
|
|
|
$("#delModal .modal-body").html("");
|
|
|
$("#delModal").show();
|
|
|
+ console.log(appealExamineRecordDTOList[0]);
|
|
|
if (appealOperationType == 0) {
|
|
|
$("#appealDel").tmpl(appealExamineRecordDTOList[0]).appendTo("#delModal .modal-body");
|
|
|
$("#delModal .confirm").text("确定").unbind("click").click(function () {
|
|
@@ -194,7 +195,7 @@ $(document).on("click", ".btn-sure", (e) => {
|
|
|
$("#delModal .confirm").text("确定").unbind("click").click(function () {
|
|
|
approved(3)
|
|
|
});
|
|
|
- }else if (appealOperationType == 3) {
|
|
|
+ } else if (appealOperationType == 3) {
|
|
|
$("#appealRec").tmpl(appealExamineRecordDTOList[0]).appendTo("#delModal .modal-body");
|
|
|
$("#delModal .confirm").text("确定").unbind("click").click(function () {
|
|
|
approved(4)
|
|
@@ -204,6 +205,18 @@ $(document).on("click", ".btn-sure", (e) => {
|
|
|
|
|
|
|
|
|
|
|
|
+$(document).on("click", ".goback", (e) => {
|
|
|
+ console.log(form);
|
|
|
+ if (form == 1 || form == 2) {
|
|
|
+ $(parent.document).find("#contentIframe").attr("src", './appealCheck.html');
|
|
|
+ } else {
|
|
|
+ console.log(123);
|
|
|
+ $(parent.document).find("#contentIframe").attr("src", './appealHistory.html');
|
|
|
+ }
|
|
|
+
|
|
|
+});
|
|
|
+
|
|
|
+
|
|
|
$(document).on("click", ".btn-cancel", (e) => {
|
|
|
$("#delModal .modal-body").html("");
|
|
|
$("#delModal").show();
|
|
@@ -214,7 +227,6 @@ $(document).on("click", ".btn-cancel", (e) => {
|
|
|
rejected()
|
|
|
});
|
|
|
});
|
|
|
-
|
|
|
//审核
|
|
|
function approved(type) {
|
|
|
if (type == 1) {
|
|
@@ -246,7 +258,7 @@ function approved(type) {
|
|
|
$(".appealDef .warning").show();
|
|
|
return
|
|
|
}
|
|
|
- }else if (type == 4) {
|
|
|
+ } else if (type == 4) {
|
|
|
appealInfo.exampleOperation = 5
|
|
|
}
|
|
|
const param = {
|