${(activePage-1)*15 + i+1} |
${hospital=='台州市立'?(''+(item.deptClass?(item.deptClass+'系统'):"-")+' | '):''}
${item.deptName || "-"} |
${item.entryNum || "-"} |
${item.averageValue || "-"} |
${item.mrNum || "-"} |
${item.firstLevelNum+'' || "-"} |
${item.secondLevelNum+'' || "-"} |
${item.thirdLevelNum+'' || "-"} |
${item.firstLevelPercentStr || "-"} |
${item.secondLevelPercentStr || "-"} |
${item.thirdLevelPercentStr || "-"} |
`
}
$('.deptScoreDetailControlTable table').html(str?tHead+''+str+'':tHead+`${emptyBox()}`)
bindScoreDetail(hisId)
$(".goHomeDetailQuexian").click(function(){
let deptName = $(this).attr("data-dept")
let deptId = $(this).attr("dept-id")
// focusMenuItem("YH-ZKK-GKSQXZB_XQ");
$(parent.document).find("#contentIframe").attr("src", "quexianDetailControl.html?deptName=" + deptName+"&deptId=" + deptId +"&from=2"+"&shijian=3"+"&startDateParam="+startDateParam+"&endDateParam="+endDateParam)
})
$(".goHomeDetailB").click(function(){
let deptName = $(this).attr("data-dept")
let deptC = $(this).attr("data-c")
let deptIds = $(this).attr("dept-id")
focusMenuItem("YH-BLZK-ZKPF");
$(parent.document).find("#contentIframe").attr("src","qcList.html?deptName="+deptName+"&from=2"+"&shijian=3&chengdu="+deptC+"&deptId="+deptIds+"&startDateParam="+startDateParam+"&endDateParam="+endDateParam)
})
// initScroll("deptScoreDetailControl","YX",1)
}
function scoreDetail(id,age,hid,code){
window.open(`./qcScore.html?id=${id}&age=${age}&hid=${hid}&code=${code}`)
}
function bindScoreDetail(hisId){
$('.patientNameSpan').on('click',function(e){
const index = $(this).attr("data-index")
const type = $(this).attr("data-type")
const item = tabList[index]
midifyMsgBox(item,type)
})
}
function midifyMsgBox(item,type){
const itemCopy = JSON.parse(JSON.stringify(item))
let msgBox = ''
if(type == 1){
msgBox = `
修改 })
状态:
${itemCopy.status == 0?"未处理":"已处理"}
备注:
支持≥0的数字输入,最多保留小数点后1位~
保存
`
}else{
msgBox = `
修改 })
确认要删除该条异常记录?
删除
取消
`
}
$("#mainBox", parent.document).append(msgBox)
$(".midifyEditDel", parent.document).on("click",function(){
delModifyOne(itemCopy)
})
$(".midifyEditQuit", parent.document).on("click",function(){
$("#mainBox .midifyMsgBox", parent.document).remove()
})
$(".abnormalAll", parent.document).on("click",function(){
$(".abnormalStatusLis", parent.document).slideToggle()
})
$(".abnormalStatusLis li", parent.document).on("click",function(){
let status = $(this).attr("data-status")
let str = $(this).html()
$(".abnormalAll", parent.document).attr("data-status",status).html(str)
$(".abnormalStatusLis", parent.document).slideToggle()
})
$("#mainBox .midifyMsgBox .iconClose", parent.document).on("click", function(e){
$("#mainBox .midifyMsgBox", parent.document).remove()
})
$("#mainBox .midifyMsgBox .itemScore", parent.document).on("keypress", function(event){
return (/[\d\.]/.test(String.fromCharCode(event.keyCode)))
})
$("#mainBox .midifyMsgBox .itemScore", parent.document).on("input", function(e){
const val = $(this).val()
itemCopy.score = val
})
$("#mainBox .midifyMsgBox .midifyEdit", parent.document).on("click", function(e){
saveModifyOne(itemCopy)
})
}
//保存修改
function delModifyOne(itemCopy){
let param = {
"id": itemCopy.id
}
post(api.delQcAnnormal,param).then(res =>{
if(res.data.code == '0'){
const data = res.data.data;
getTabData(1)
$("#mainBox .midifyMsgBox", parent.document).remove()
$.alerModal({"message":'删除成功',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
}else{
}
}).catch((e) =>{
})
}
//保存修改
function saveModifyOne(itemCopy){
let txt = $(".abnormalTxt", parent.document).val()
let status = $(".abnormalAll", parent.document).attr("data-status")
let param = {
"id": itemCopy.id,
"remark": txt,
"status": status
}
post(api.saveQcAnnormal,param).then(res =>{
if(res.data.code == '0'){
const data = res.data.data;
getTabData(1)
$("#mainBox .midifyMsgBox", parent.document).remove()
$.alerModal({"message":'修改成功',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
}else{
}
}).catch((e) =>{
})
}
//选择病历等级
$('.selectLevel').on("click", function(e){
e.stopPropagation()
$(".deptList ").css("display", "none")
$(".selectDept .arrow").attr("src",iconDown)
const showList = $(".levelList ").css("display")
if(showList == "none" ||!showList){
$(".levelList ").css("display","block")
$(".selectLevel .arrow").attr("src",iconUp)
}else{
$(".levelList ").css("display", "none")
$(".selectLevel .arrow").attr("src",iconDown)
}
})
bindLeveldSelect()
//是否启用选择
function bindLeveldSelect(){
$('.levelItem').on("click",function(){
const levelItemName = $(this).attr("data-name")
const levelItemItemId = $(this).attr("data-id")
levelTemp =levelItemItemId
$('.selectLevel').html(levelItemName)
$(".levelList").css("display", "none")
$(".selectLevel").append(`
`)
})
}
//全选绑定
$('.selectDept').on("click", function(e){
e.stopPropagation()
$(".levelList ").css("display","none")
$(".selectLevel .arrow").attr("src",iconDown)
const showList = $(".deptList ").css("display")
if(showList == "none" ||!showList){
$(".deptList ").css("display","block")
$(".selectDept .arrow").attr("src",iconUp)
}else{
$(".deptList ").css("display", "none")
$(".selectDept .arrow").attr("src",iconDown)
}
})
function rendeDeptList(deptList){
let str = `全部`
for(let i = 0; i < deptList.length; i++){
str += ` ${deptList[i].deptName}`
}
$('.deptList').html(str)
}
bindDeptSelect()
//科室选择
function bindDeptSelect(){
$('.deptItem').on("click",function(){
const deptItemName = $(this).attr("data-name")
const deptItemId = $(this).attr("data-id")
deptIdTemp =deptItemId
$('.selectDept').html(deptItemName).attr('title',deptItemName)
$(".selectDept").append(`
`)
$(".deptList").css("display", "none")
})
}
function loading(){
const str = `
`
$("#mainBox", parent.document).append(str)
}
function hideLoading(){
$("#mainBox .loadingBox", parent.document).remove()
}
$('.recordScoreBtn').on("click",function(e){
if(!hasData('FUNC000017','YH-BLZK-ZKPF')){
return
}
let scoreList = []
for(let i = 0; i {
if(res.data.code == '0'){
scoreSum++
if(scoreSum === totalNum){
hideLoading()
scoreSum = 0
const activePage = $(".activePage").attr('data-page') || 1
getTabData(activePage)
}
}else{}
}).catch((e) =>{
})
}
$(".patientNumInp").on("input", function(e){
const val = $(this).val().trim()
behospitalCodeTemp = val
})
$(".patientNameInp").on("input", function(e){
const val = $(this).val().trim()
nameTemp = val
})
$(".doctorInp").on("input", function(e){
const val = $(this).val().trim()
doctorNameTemp = val
})
$(".doctorNumInp").on("input", function(e){
const val = $(this).val().trim();
doctorNumTemp = val
})
//分页渲染
function renderPagination(totalPage,activePage,totalNum){
let str = `共${totalPage}页/${totalNum}条数据
`
if(totalPage <= 6){
for(let i = 1; i <= totalPage; i++){
str += `${i}`
}
}else{
if(activePage <= 3){ //选中页数小于4
for(let i = 1; i <= 4; i++){
str += `${i}`
}
str += `...`
str += `${totalPage}`
} else if(activePage > totalPage -3){
str += `1`
str += `...`
str += `${totalPage -3}`
str += `${totalPage -2}`
str += `${totalPage -1}`
str += `${totalPage}`
} else {
str += `1`
str += `...`
str += `${activePage -1}`
str += `${activePage}`
str += `${activePage +1}`
str += `...`
str += `${totalPage}`
}
}
str += `
`
$('.pagination').html(str)
$('.page' + activePage).addClass('activePage')
$(".pageNum").on("click", function(e){
const activePageNow = Number($(this).attr('data-page'))
getTabData(activePageNow)
// renderPagination(totalPage,activePageNow,totalNum)
})
$(".prePage").on("click", function(e){
let activePageNow = Number($(".activePage").attr('data-page'))
if(activePageNow > 1){
activePageNow--
getTabData(activePageNow)
// renderPagination(totalPage,activePageNow,totalNum)
}
})
$(".nextPage").on("click", function(e){
let activePageNow = Number($(".activePage").attr('data-page'))
if(activePageNow < totalPage){
activePageNow++
getTabData(activePageNow)
// renderPagination(totalPage,activePageNow,totalNum)
}
})
}
$(document).on("click", function(){
$(".levelList ").css("display", "none")
$(".deptList").css("display", "none")
$(".selectLevel .arrow").attr("src",iconDown)
})
$(function() {
const iconCalenBlue= require("./../images/darkDate.png")
const iconCalenGrey= require("./../images/icon_calen_grey.png")
$('.datapickerBox').append(`
`)
$('.iconCalen').on("mouseenter", function(e){
$(this).attr("src", iconCalenBlue)
})
$('.iconCalen').on("mouseleave", function(e){
$(this).attr("src", iconCalenGrey)
})
$('.iconCalen').on("click", function(e){
$(this).parent().find("input").focus()
});
$('.export').click(function(){
const start = new Date(startDateParam).getTime()
const end = new Date(endDateParam).getTime()
if(start > end){
$.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
return
}
const param = {
"asc": "",
"desc": "",
"name": behospitalCode||"",
"deptClass": deptId||'',
"type": statisticsType||2, //1-本月,2-本年
"startDate":startDateParam,
"isPlacefile":isPlacefile,
"endDate":endDateParam
};
const url = hospital == '台州市立'?api.exportDeptFlawsTz:api.exportDeptFlaws;
expJson(url,param).then(res =>{
downloadExportedData(res.data, "各科室缺陷占比.xls")
})
})
});