|
@@ -21,7 +21,8 @@ const goDownB = require("./../images/arrow_down_blue.png")
|
|
|
|
|
|
let pageSet = [],pageSetCopy = [], showNum = 0, scrollTop=0;
|
|
|
$(".selectLevel").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
-$(".selectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+$(".fpSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+$(".qcSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
let srcUrl = $("#contentIframe",parent.document).attr("src")
|
|
|
let statisticsType = getUrlArgObjectNew("dateType",srcUrl)||getUrlArgObjectNew("shijian",srcUrl) || ""
|
|
|
let chengdu = getUrlArgObjectNew("chengdu",srcUrl)||""
|
|
@@ -30,7 +31,8 @@ let deptNamePram = getUrlArgObjectNew("deptName",srcUrl)||""
|
|
|
let docName = getUrlArgObjectNew("docName",srcUrl)||""
|
|
|
let tabList = [], name = "", behospitalCode="", behosDateStart="", level="",behosDateEnd="", scoreSum = 0,nameTemp = "",
|
|
|
behospitalCodeTemp="",levelTemp="", deptId="",deptIdTemp="", doctorName="", doctorNameTemp="", doctorNum="", doctorNumTemp="",
|
|
|
- checkStatus="",checkStatusTemp="",data_desc=["leave_hospital_date"],data_asc=[];
|
|
|
+ fpCheckStatus="",fpCheckStatusTemp="",fpCheckName="",fpCheckNameTemp="",qcCheckName="",qcCheckNameTemp="",qcCheckStatus="",qcCheckStatusTemp="",fpCheckDateStart="",fpCheckDateEnd="",
|
|
|
+ qcCheckDateStart="",qcCheckDateEnd="",data_desc=["leave_hospital_date"],data_asc=[];
|
|
|
|
|
|
$("#filterToggler").click(function(){
|
|
|
const text = $(this).text();
|
|
@@ -38,7 +40,6 @@ $("#filterToggler").click(function(){
|
|
|
$(this).text(text==="收起筛选"?"展开筛选":"收起筛选").toggleClass("up");
|
|
|
});
|
|
|
|
|
|
-console.log('docName',docName)
|
|
|
if(chengdu){
|
|
|
levelTemp = chengdu
|
|
|
level = chengdu
|
|
@@ -89,7 +90,14 @@ function getTabData(activePage){
|
|
|
leaveHosDateEnd: behosDateEnd, //0-未启用 1-启用
|
|
|
size: 15,
|
|
|
statisticsType:statisticsType,
|
|
|
- checkStatus: checkStatus?Number(checkStatus):checkStatus, //核查状态
|
|
|
+ checkStatus: qcCheckStatus?Number(qcCheckStatus):qcCheckStatus, //病历核查状态
|
|
|
+ mrStatus: fpCheckStatus?Number(fpCheckStatus):fpCheckStatus, //首页核查状态(1:已核查,0:未核查)
|
|
|
+ chName: qcCheckName, //病历核查人员
|
|
|
+ mrName: fpCheckName, //首页核查人员
|
|
|
+ chTimeStart: qcCheckDateStart.replace(/\//g,'-'), //病历核查起始时间
|
|
|
+ chTimeEnd: qcCheckDateEnd.replace(/\//g,'-'), //病历核查截止时间
|
|
|
+ mrTimeStart: fpCheckDateStart.replace(/\//g,'-'), //首页核查起始时间
|
|
|
+ mrTimeEnd: fpCheckDateEnd.replace(/\//g,'-'), //首页核查截止时间
|
|
|
}
|
|
|
return post(api.qcListByDoc,param).then(res =>{
|
|
|
if(res.data.code == '0'){
|
|
@@ -116,25 +124,60 @@ function getTabData(activePage){
|
|
|
$(".filter").on("click", function(e){
|
|
|
behosDateStart = $("#datepicker").val()
|
|
|
behosDateEnd = $("#datepicker2").val()
|
|
|
- const start = new Date(behosDateStart).getTime()
|
|
|
- const end = new Date(behosDateEnd).getTime()
|
|
|
- if(start > end){
|
|
|
- $.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
+ fpCheckDateStart = $("#datepickerFp1").val()
|
|
|
+ fpCheckDateEnd = $("#datepickerFp2").val()
|
|
|
+ qcCheckDateStart = $("#datepickerQc1").val()
|
|
|
+ qcCheckDateEnd = $("#datepickerQc2").val()
|
|
|
+ const behosDateStartTime = new Date(behosDateStart).getTime()
|
|
|
+ const behosDateEndTime = new Date(behosDateEnd).getTime()
|
|
|
+ const qcCheckDateStartTime = new Date(qcCheckDateStart).getTime()
|
|
|
+ const qcCheckDateEndTime = new Date(qcCheckDateEnd).getTime()
|
|
|
+ const fpCheckDateStartTime = new Date(fpCheckDateStart).getTime()
|
|
|
+ const fpCheckDateEndTime = new Date(fpCheckDateEnd).getTime()
|
|
|
+
|
|
|
+ if(behosDateStartTime > behosDateEndTime){
|
|
|
+ $.alerModal({"message":'出院日期开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if(qcCheckDateStartTime > qcCheckDateEndTime){
|
|
|
+ $.alerModal({"message":'病历核查开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
return
|
|
|
}
|
|
|
+
|
|
|
+ if(fpCheckDateStartTime > fpCheckDateEndTime){
|
|
|
+ $.alerModal({"message":'病案首页核查开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
if(behosDateStart){
|
|
|
behosDateStart = behosDateStart.replace(/\//g,'-') + ' 00:00:00'
|
|
|
}
|
|
|
if(behosDateEnd){
|
|
|
behosDateEnd = behosDateEnd.replace(/\//g,'-') + ' 23:59:59'
|
|
|
}
|
|
|
+ if(fpCheckDateStart){
|
|
|
+ fpCheckDateStart = fpCheckDateStart + ' 00:00:00'
|
|
|
+ }
|
|
|
+ if(fpCheckDateEnd){
|
|
|
+ fpCheckDateEnd = fpCheckDateEnd + ' 23:59:59'
|
|
|
+ }
|
|
|
+ if(qcCheckDateStart){
|
|
|
+ qcCheckDateStart = qcCheckDateStart + ' 00:00:00'
|
|
|
+ }
|
|
|
+ if(qcCheckDateEnd){
|
|
|
+ qcCheckDateEnd = qcCheckDateEnd + ' 23:59:59'
|
|
|
+ }
|
|
|
+
|
|
|
name = nameTemp
|
|
|
behospitalCode = behospitalCodeTemp
|
|
|
level = levelTemp==="全部"?"":levelTemp
|
|
|
deptId = deptIdTemp
|
|
|
doctorName = doctorNameTemp
|
|
|
+ fpCheckName = fpCheckNameTemp
|
|
|
+ qcCheckName = qcCheckNameTemp
|
|
|
doctorNum = doctorNumTemp
|
|
|
- checkStatus = checkStatusTemp
|
|
|
+ fpCheckStatus = fpCheckStatusTemp
|
|
|
+ qcCheckStatus = qcCheckStatusTemp
|
|
|
getTabData(1)
|
|
|
})
|
|
|
|
|
@@ -150,11 +193,17 @@ $(".abnormalClear").on("click", function(e){
|
|
|
deptId="";
|
|
|
deptIdTemp="";
|
|
|
doctorName="";
|
|
|
+ fpCheckName="";
|
|
|
+ qcCheckName="" ;
|
|
|
doctorNum="";
|
|
|
doctorNameTemp="";
|
|
|
doctorNumTemp="";
|
|
|
- checkStatus="";
|
|
|
- checkStatusTemp="";
|
|
|
+ fpCheckNameTemp="";
|
|
|
+ qcCheckNameTemp="";
|
|
|
+ fpCheckStatus="";
|
|
|
+ fpCheckStatusTemp="";
|
|
|
+ qcCheckStatus="";
|
|
|
+ qcCheckStatusTemp=""
|
|
|
data_desc=["leave_hospital_date"]
|
|
|
data_asc=[];
|
|
|
$('.patientNumInp').val('')
|
|
@@ -164,7 +213,7 @@ $(".abnormalClear").on("click", function(e){
|
|
|
$('.doctorInp').val('')
|
|
|
// $('#datepicker').val('')
|
|
|
// $('#datepicker2').val('')
|
|
|
- //默认日期为近一个月
|
|
|
+ //默认日期为近一周
|
|
|
$( "#datepicker" ).datepicker({
|
|
|
changeMonth: true,
|
|
|
changeYear: true,
|
|
@@ -175,13 +224,36 @@ $(".abnormalClear").on("click", function(e){
|
|
|
changeYear: true,
|
|
|
dateFormat:"yy/mm/dd"
|
|
|
}).datepicker( "setDate",new Date());
|
|
|
+ $( "#datepickerFp1" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd",
|
|
|
+ }).datepicker( "setDate", "");
|
|
|
+ $( "#datepickerFp2" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
+ $( "#datepickerQc1" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd",
|
|
|
+ }).datepicker( "setDate", "");
|
|
|
+ $( "#datepickerQc2" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
$('.selectLevel').html('全部')
|
|
|
$(".levelList").css("display", "none")
|
|
|
$(".selectLevel").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
// $('.selectLevel ').addClass('unSelect')
|
|
|
- $('.selectCheck').html('全部')
|
|
|
- $(".checkList").css("display", "none")
|
|
|
- $(".selectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+ $('.fpSelectCheck').html('全部')
|
|
|
+ $(".fpCheckList").css("display", "none")
|
|
|
+ $(".fpSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+ $('.qcSelectCheck').html('全部')
|
|
|
+ $(".qcCheckList").css("display", "none")
|
|
|
+ $(".qcSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
$("th[code]").removeClass("asc desc")
|
|
|
$(".leaveHospitalDate").addClass(" desc")
|
|
|
behosDateStart = $("#datepicker").val()
|
|
@@ -192,6 +264,10 @@ $(".abnormalClear").on("click", function(e){
|
|
|
if(behosDateEnd){
|
|
|
behosDateEnd = behosDateEnd.replace(/\//g,'-') + ' 23:59:59'
|
|
|
}
|
|
|
+ fpCheckDateStart = ""
|
|
|
+ fpCheckDateEnd = ""
|
|
|
+ qcCheckDateStart = ""
|
|
|
+ qcCheckDateEnd = ""
|
|
|
getTabData(1)
|
|
|
})
|
|
|
function bindOrder(){
|
|
@@ -231,7 +307,7 @@ function renderTab(data){
|
|
|
<td class="recordScoreOperaBtn textCenter" style="opacity:${hasData('FUNC000017')?'1':'0.5'}">评分</td>`
|
|
|
for(let j = 0; j < pageSet.length; j++){
|
|
|
if(pageSet[j].status == 1){
|
|
|
- if(pageSet[j].val === "checkStatus"){
|
|
|
+ if(pageSet[j].val === "checkStatus" || pageSet[j].val === "mrStatus" ){
|
|
|
str += `<td class="${isTextCenter(pageSet[j].val) ? 'textCenter':''}"><span data-index=${i} class="${pageSet[j].val=='name'?'patientNameSpan':'' } ">${item[pageSet[j].val] =="1"? "已核查" :item[pageSet[j].val] === 0 ? "未核查":"-"}<span></td>`
|
|
|
}else{
|
|
|
str += `<td class="${isTextCenter(pageSet[j].val) ? 'textCenter':''}"><span data-index=${i} class="${pageSet[j].val=='name'?'patientNameSpan':'' } ">${item[pageSet[j].val] || "-"}<span></td>`
|
|
@@ -304,6 +380,10 @@ $('.selectLevel').on("click", function(e){
|
|
|
e.stopPropagation()
|
|
|
$(".checkList ").css("display", "none")
|
|
|
$(".selectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".fpCheckList ").css("display", "none")
|
|
|
+ $(".fpSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".qcSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".qcCheckList ").css("display", "none")
|
|
|
const showList = $(".levelList ").css("display")
|
|
|
if(showList == "none" ||!showList){
|
|
|
$(".levelList ").css("display","block")
|
|
@@ -314,23 +394,43 @@ $('.selectLevel').on("click", function(e){
|
|
|
}
|
|
|
})
|
|
|
|
|
|
-//选择核查状态
|
|
|
-$('.selectCheck').on("click", function(e){
|
|
|
+//选择病案首页核查状态
|
|
|
+$('.fpSelectCheck').on("click", function(e){
|
|
|
e.stopPropagation()
|
|
|
$(".deptList ").css("display", "none")
|
|
|
$(".selectDept .arrow").attr("src",iconDown)
|
|
|
$(".levelList ").css("display","none")
|
|
|
$(".selectLevel .arrow").attr("src",iconDown)
|
|
|
- const showList = $(".checkList ").css("display")
|
|
|
+ $(".qcSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".qcCheckList ").css("display", "none")
|
|
|
+ const showList = $(".fpCheckList ").css("display")
|
|
|
if(showList == "none" ||!showList){
|
|
|
- $(".checkList ").css("display","block")
|
|
|
- $(".selectCheck .arrow").attr("src",iconUp)
|
|
|
+ $(".fpCheckList ").css("display","block")
|
|
|
+ $(".fpSelectCheck .arrow").attr("src",iconUp)
|
|
|
}else{
|
|
|
- $(".checkList ").css("display", "none")
|
|
|
- $(".selectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".fpCheckList ").css("display", "none")
|
|
|
+ $(".fpSelectCheck .arrow").attr("src",iconDown)
|
|
|
}
|
|
|
})
|
|
|
|
|
|
+//选择病历核查状态
|
|
|
+$('.qcSelectCheck').on("click", function(e){
|
|
|
+ e.stopPropagation()
|
|
|
+ $(".deptList ").css("display", "none")
|
|
|
+ $(".selectDept .arrow").attr("src",iconDown)
|
|
|
+ $(".levelList ").css("display","none")
|
|
|
+ $(".selectLevel .arrow").attr("src",iconDown)
|
|
|
+ $(".fpSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".fpCheckList ").css("display", "none")
|
|
|
+ const showList = $(".qcCheckList ").css("display")
|
|
|
+ if(showList == "none" ||!showList){
|
|
|
+ $(".qcCheckList ").css("display","block")
|
|
|
+ $(".qcSelectCheck .arrow").attr("src",iconUp)
|
|
|
+ }else{
|
|
|
+ $(".qcCheckList ").css("display", "none")
|
|
|
+ $(".qcSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ }
|
|
|
+})
|
|
|
|
|
|
|
|
|
|
|
@@ -348,17 +448,31 @@ function bindLeveldSelect(){
|
|
|
})
|
|
|
}
|
|
|
|
|
|
-bindCheckedSelect()
|
|
|
-//核查状态选择
|
|
|
-function bindCheckedSelect(){
|
|
|
- $('.checkItem').on("click",function(){
|
|
|
- const checkItemName = $(this).attr("data-name")
|
|
|
- const checkItemItemId = $(this).attr("data-id")
|
|
|
- checkStatusTemp =checkItemItemId
|
|
|
- $('.selectCheck').html(checkItemName)
|
|
|
- $(".checkList").css("display", "none")
|
|
|
- $(".selectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
- $('.selectCheck').removeClass('unSelect')
|
|
|
+bindCheckedSelectFp()
|
|
|
+//病案首页核查状态选择
|
|
|
+function bindCheckedSelectFp(){
|
|
|
+ $('.fpCheckItem').on("click",function(){
|
|
|
+ const fpCheckItemName = $(this).attr("data-name")
|
|
|
+ const fpCheckItemItemId = $(this).attr("data-id") || ""
|
|
|
+ fpCheckStatusTemp =fpCheckItemItemId
|
|
|
+ $('.fpSelectCheck').html(fpCheckItemName)
|
|
|
+ $(".fpCheckList").css("display", "none")
|
|
|
+ $(".fpSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+ $('.fpSelectCheck').removeClass('unSelect')
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+bindCheckedSelectQc()
|
|
|
+//病历核查状态选择
|
|
|
+function bindCheckedSelectQc(){
|
|
|
+ $('.qcCheckItem').on("click",function(){
|
|
|
+ const qcCheckItemName = $(this).attr("data-name")
|
|
|
+ const qcCheckItemItemId = $(this).attr("data-id") || ""
|
|
|
+ qcCheckStatusTemp =qcCheckItemItemId
|
|
|
+ $('.qcSelectCheck').html(qcCheckItemName)
|
|
|
+ $(".qcCheckList").css("display", "none")
|
|
|
+ $(".qcSelectCheck").append(`<img class="arrow" src=${iconDown} alt="下拉">`)
|
|
|
+ $('.qcSelectCheck').removeClass('unSelect')
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -672,7 +786,6 @@ function bindColOrder(){
|
|
|
}else{
|
|
|
const downItem = pageSetCopy[index]
|
|
|
const downItemBack = pageSetCopy[index + 1]
|
|
|
- console.log('downItem',downItem,'downItemBack',downItemBack)
|
|
|
pageSetCopy.splice(index,2,downItemBack,downItem)
|
|
|
scrollTop = $(".colTabInfoBox", parent.document).scrollTop()
|
|
|
renderColSet(pageSetCopy)
|
|
@@ -696,6 +809,14 @@ $(".doctorInp").on("input", function(e){
|
|
|
const val = $(this).val().trim()
|
|
|
doctorNameTemp = val
|
|
|
})
|
|
|
+$(".fpCheckPeople").on("input", function(e){
|
|
|
+ const val = $(this).val().trim()
|
|
|
+ fpCheckNameTemp = val
|
|
|
+})
|
|
|
+$(".qcCheckPeople").on("input", function(e){
|
|
|
+ const val = $(this).val().trim()
|
|
|
+ qcCheckNameTemp = val
|
|
|
+})
|
|
|
$(".doctorNumInp").on("input", function(e){
|
|
|
const val = $(this).val().trim();
|
|
|
doctorNumTemp = val
|
|
@@ -754,6 +875,26 @@ $(function() {
|
|
|
changeYear: true,
|
|
|
dateFormat:"yy/mm/dd"
|
|
|
}).datepicker( "setDate",endDate);
|
|
|
+ $( "#datepickerFp1" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
+ $( "#datepickerFp2" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
+ $( "#datepickerQc1" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
+ $( "#datepickerQc2" ).datepicker({
|
|
|
+ changeMonth: true,
|
|
|
+ changeYear: true,
|
|
|
+ dateFormat:"yy/mm/dd"
|
|
|
+ }).datepicker( "setDate","");
|
|
|
getPageSet().then(res =>{
|
|
|
$(".filter").click(); //初始查询
|
|
|
})
|
|
@@ -823,10 +964,20 @@ function renderPagination(totalPage,activePage,totalNum){
|
|
|
$(document).on("click", function(){
|
|
|
$(".levelList ").css("display", "none")
|
|
|
$(".selectLevel .arrow").attr("src",iconDown)
|
|
|
+ $(".fpCheckList").css("display", "none")
|
|
|
+ $(".qcCheckList").css("display", "none")
|
|
|
+ $(".fpSelectCheck .arrow").attr("src",iconDown)
|
|
|
+ $(".qcSelectCheck .arrow").attr("src",iconDown)
|
|
|
|
|
|
})
|
|
|
$((function($){
|
|
|
$('.export').click(function(){
|
|
|
+ const behosDateStartTime = new Date(behosDateStart).getTime()
|
|
|
+ const behosDateEndTime = new Date(behosDateEnd).getTime()
|
|
|
+ if(behosDateStartTime > behosDateEndTime){
|
|
|
+ $.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
+ return
|
|
|
+ }
|
|
|
if((new Date(behosDateEnd) - new Date(behosDateStart))/24/60/60/1000 > 7){
|
|
|
$.alerModal({"message":"最多只能导出7天",type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
|
|
|
return
|
|
@@ -842,7 +993,14 @@ $((function($){
|
|
|
"leaveHosDateStart": behosDateStart,
|
|
|
"level": level,
|
|
|
"name": name,
|
|
|
- "checkStatus": checkStatus?Number(checkStatus):checkStatus, //核查状态
|
|
|
+ "checkStatus": qcCheckStatus?Number(qcCheckStatus):qcCheckStatus, //病历核查状态
|
|
|
+ "mrStatus": fpCheckStatus?Number(fpCheckStatus):fpCheckStatus, //首页核查状态(1:已核查,0:未核查)
|
|
|
+ "chName": qcCheckName, //病历核查人员
|
|
|
+ "mrName": fpCheckName, //首页核查人员
|
|
|
+ "chTimeStart": qcCheckDateStart.replace(/\//g,'-'), //病历核查起始时间
|
|
|
+ "chTimeEnd": qcCheckDateEnd.replace(/\//g,'-'), //病历核查截止时间
|
|
|
+ "mrTimeStart": fpCheckDateStart.replace(/\//g,'-'), //首页核查起始时间
|
|
|
+ "mrTimeEnd": fpCheckDateEnd.replace(/\//g,'-'), //首页核查截止时间
|
|
|
}
|
|
|
expJson(api.exportQcDocteam,param).then(res =>{
|
|
|
downloadExportedData(res.data, behosDateStart.slice(0,10).replace(/-/g,"")+"-"+behosDateEnd.slice(0,10).replace(/-/g,"")+"抽查住院病历质量情况.xls")
|