diff --git a/.gitignore b/.gitignore index d2c3354..f3cefb9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ /target/ /.idea/ -/out/ emr_medical_record.iml \ No newline at end of file diff --git a/doc/gm_record.bak b/doc/gm_record.bak new file mode 100644 index 0000000..71271a2 Binary files /dev/null and b/doc/gm_record.bak differ diff --git a/src/main/webapp/static/js/showRecord/showRecordIframe.js b/src/main/webapp/static/js/showRecord/showRecordIframe.js index 428acc5..6f24002 100644 --- a/src/main/webapp/static/js/showRecord/showRecordIframe.js +++ b/src/main/webapp/static/js/showRecord/showRecordIframe.js @@ -86,10 +86,10 @@ function onloadPdf(){ //定义刷新开始计时到超时时间为10分钟 var timeOut = 10 * 60 * 1000; -//定义查询间隔时间默认1分钟 -var intervalTime = 60 * 1000; -//定义倒计时刷新秒数默认10秒 -var times = 10; +//定义查询间隔时间默认10秒 +var intervalTime = 10 * 1000; +//定义倒计时刷新秒数默认5秒 +var times = 5; //按需求刷新pdf $("#loading").css("background","url("+path+"/static/img/load.gif) no-repeat 10px 50%"); function flashPdf(){ @@ -126,7 +126,6 @@ function flashPdf(){ },times*1000); //成功 toastr.warning("按需采集已完成,页面将在"+times+"秒后自动刷新"); - times--; } } })