纪检监督电话 (工作期间)
028-85064821
function goPage(n){
window.location.href = "/investor/time_report/index.html?currentPage="+n;
}
function reportDownload(obj){
var source = obj.getAttribute("rtd");
var url = source.substring(source.indexOf("http"), source.lastIndexOf("\""));
var last = url.substring(url.lastIndexOf("/")+1);
var a = document.createElement("a");
a.setAttribute('href', url);
a.setAttribute('target', '_blank');
a.setAttribute('download', last);
a.style.display="none";
document.body.appendChild(a);
a.click();
}