备份数据库

master
zengwh 5 years ago
parent f4de17d750
commit ef0f0f168e

1
.gitignore vendored

@ -1,4 +1,3 @@
/target/
/.idea/
/out/
emr_medical_record.iml

Binary file not shown.

@ -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--;
}
}
})

Loading…
Cancel
Save