let url = window.g.ApiUrl + '/file/export/info';
this.download(url);
download(url) {
let link = document.createElement('a');
link.style.display = 'none';
link.href = url;
ducument.body.appendChild(link);
link.click();
}
let url = window.g.ApiUrl + '/file/export/info';
this.download(url);
download(url) {
let link = document.createElement('a');
link.style.display = 'none';
link.href = url;
ducument.body.appendChild(link);
link.click();
}