zhouna 3 سال پیش
والد
کامیت
eaf3f9ddcb

+ 2 - 2
src/js/dataAnalysis/improveStatistics.js

@@ -69,7 +69,7 @@ $(function() {
 	  $.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
 	  return
 	}
-	expJson(api.getEntryDefectImproveByExport,param).then(res =>{
+	expJson(api.getEntryDefectImproveByExport,param,{noPlacefile:true}).then(res =>{
 	  downloadExportedData(res.data,"条目缺陷改善统计"+startDateTemp.substr(0,10).replace(/\//g,'')+"-"+endDateTemp.substr(0,10).replace(/\//g,'')+".xls");
 	})
   })
@@ -180,7 +180,7 @@ function getTabData(activePage){
     }
     $('.pagination').html("")
     $('.tbody').html(emptyBox('努力加载中...','',1))
-    post(api.getEntryDefectImprove,param).then(res =>{
+    post(api.getEntryDefectImprove,param,{noPlacefile:true}).then(res =>{
         if(res.data.code == '0'){
             const data = res.data.data;
             const detail = data.records||[];

+ 2 - 2
src/js/dataAnalysis/statisticsDetail.js

@@ -167,7 +167,7 @@ $(function() {
 	  desc:data_desc,       //降序
 	  size: 500,       //每页显示条数
 	};
-	expJson(api.getDefectImproveInnerByExport , param).then(res => {
+	expJson(api.getDefectImproveInnerByExport , param,{noPlacefile:true}).then(res => {
 	  downloadExportedData(res.data, '条目缺陷改善统计详情'+startDateParam.substr(0,10).replace(/\//g,'')+"-"+endDateParam.substr(0,10).replace(/\//g,'') + ".xls")
 	})
   })
@@ -206,7 +206,7 @@ function getTabData(activePage){
     }
     $('.pagination').html("")
     $('.tbody').html(emptyBox('努力加载中...','',1))
-    return post(api.getEntryDefectImproveInner,param).then(res =>{
+    return post(api.getEntryDefectImproveInner,param,{noPlacefile:true}).then(res =>{
         if(res.data.code == '0'){
             const data = res.data.data;
             tabList = data.records;

+ 2 - 2
src/js/dataAnalysis/useStatistics.js

@@ -59,7 +59,7 @@ $(function() {
 	  $.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
 	  return
 	}
-	expJson(api.getQcClickByExport,param).then(res =>{
+	expJson(api.getQcClickByExport,param,{noPlacefile:true}).then(res =>{
 	  downloadExportedData(res.data,"临床质控使用统计"+startDateTemp.substr(0,10).replace(/\//g,'')+"-"+endDateTemp.substr(0,10).replace(/\//g,'')+".xls");
 	})
   })
@@ -153,7 +153,7 @@ function getTabData(activePage){
   }
   $('.pagination').html("")
   $('.tbody').html(emptyBox('努力加载中...','',1))
-  post(api.getQcClick,param).then(res =>{
+  post(api.getQcClick,param,{noPlacefile:true}).then(res =>{
 	if(res.data.code == '0'){
 	  const detail = res.data.data||[];
 	  /*const totalPage = data.pages;

+ 2 - 2
src/js/dept/useStatisticsDept.js

@@ -61,7 +61,7 @@ $(function() {
 	  $.alerModal({"message":'开始时间不能大于结束时间~',type:"tip",time:'1000',isFather: true, fatherWrapper: $("#mainBox", parent.document)});
 	  return
 	}
-	expJson(api.getQcClickInnerPageByExport,param).then(res =>{
+	expJson(api.getQcClickInnerPageByExport,param,{noPlacefile:true}).then(res =>{
 	  downloadExportedData(res.data,"临床质控使用统计详情"+startDateParam.substr(0,10).replace(/\//g,'')+"-"+endDateParam.substr(0,10).replace(/\//g,'')+".xls");
 	})
   })
@@ -152,7 +152,7 @@ function getTabData(activePage){
   const param = getFilterParam(activePage);
   $('.pagination').html("")
   $('.tbody').html(emptyBox('努力加载中...','',1))
-  post(api.getQcClickDept,param).then(res =>{
+  post(api.getQcClickDept,param,{noPlacefile:true}).then(res =>{
 	if(res.data.code == '0'){
 	  const data = res.data.data;
 	  const detail =data.records||[];