|
@@ -65,7 +65,7 @@ function getTabData(activePage) {
|
|
|
patientName: $('.patientNameInp').val(),
|
|
|
complaintDateEnd: behosDateEnd.replace(/\//g, '-'),
|
|
|
complaintDateStart: behosDateStart.replace(/\//g, '-'),
|
|
|
- "desc": ['claimant_gmt_create']
|
|
|
+ "desc": ['claimant_gmt_create'],
|
|
|
}
|
|
|
$('.pagination').html("")
|
|
|
$('.tbody').html(emptyBox('努力加载中...', '',))
|
|
@@ -312,7 +312,8 @@ function getCheckUser() {
|
|
|
});
|
|
|
}
|
|
|
function userDropEvent(domSelector, selectEvent) {
|
|
|
- $("body").on("click", domSelector, function () {
|
|
|
+ $("body").on("click", domSelector, function (e) {
|
|
|
+ e.stopPropagation()
|
|
|
$(domSelector).parents(".drop-box").toggleClass("show");
|
|
|
});
|
|
|
$("body").on("click", ".checker-drop-box li", function () {
|
|
@@ -369,7 +370,7 @@ function renderTab(data) {
|
|
|
})
|
|
|
$(".appealAgain").click(function () {
|
|
|
let i = $(this).parent().attr("data-index")
|
|
|
- getCheckUser()
|
|
|
+
|
|
|
getAppealOperationType(data[i])
|
|
|
})
|
|
|
$(".goHomeDetail1").click(function () {
|
|
@@ -382,12 +383,13 @@ function renderTab(data) {
|
|
|
$(parent.document).find("#contentIframe").attr("src", "appealExamine.html?id=" + id + "&hospitalId=" + hospitalId + "&behospitalCode=" + behospitalCode + "&casesEntryId=" + casesEntryId + "&qcresultDetailId=" + qcresultDetailId + "&appealOperationType=" + appealOperationType + "&page=" + page + "&form=" + 3)
|
|
|
})
|
|
|
}
|
|
|
-function getComplaintDetailMsg(data){
|
|
|
+function getComplaintDetailMsg(data) {
|
|
|
post(api.getComplaintDetailMsg, { behospitalCode: data.behospitalCode, casesEntryId: data.casesEntryId, id: data.qcresultDetailId }).then(function (res) {
|
|
|
if (res.data.code === '0') {
|
|
|
data.qcresultDetailMsg = res.data.data
|
|
|
- $("#delModal .modal-body").html("");
|
|
|
$("#delModal").show();
|
|
|
+ getCheckUser()
|
|
|
+ $("#delModal .modal-body").html("");
|
|
|
$("#appealDef").tmpl(data).appendTo("#delModal .modal-body");
|
|
|
$("#delModal .confirm").text("确定").unbind("click").click(function () {
|
|
|
addAppealInfo(data)
|
|
@@ -479,15 +481,6 @@ function addAppealInfo(data) {
|
|
|
|
|
|
});
|
|
|
}
|
|
|
-$(document).on("click", ".checker-drop-input", (e) => {
|
|
|
- e.stopPropagation()
|
|
|
- $("#delModal ul").css("display", "block")
|
|
|
-});
|
|
|
-$(document).on("click", ".infoItem", (e) => {
|
|
|
- e.stopPropagation()
|
|
|
- const name = $(this).attr("data-name")
|
|
|
- $("#delModal ul").css("display", "none")
|
|
|
-});
|
|
|
//选择申诉模块
|
|
|
$('.selectModular').on("click", function (e) {
|
|
|
e.stopPropagation()
|
|
@@ -954,7 +947,7 @@ $(document).on("click", function () {
|
|
|
$(".selectModular .arrow").attr("src", iconDown)
|
|
|
$(".qcSelectCheck .arrow").attr("src", iconDown)
|
|
|
$(".selectType .arrow").attr("src", iconDown)
|
|
|
- $("#delModal ul").css("display", "none")
|
|
|
+ $(".checker-drop-box").removeClass("show");
|
|
|
})
|
|
|
|
|
|
|
|
@@ -973,6 +966,7 @@ $((function ($) {
|
|
|
deptName: deptName == "全部" ? "" : deptName || '',
|
|
|
modeName: moduleName == "全部" ? "" : moduleName || '',
|
|
|
operationType: operationType,
|
|
|
+ isPlacefile: isPlacefile,
|
|
|
state: state,
|
|
|
size: 15,
|
|
|
name: $('.name').val(),
|