You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
422 B
24 lines
422 B
function exportReader(){
|
|
//获得basePath
|
|
basePath=$('#basePath').val();
|
|
ajax(
|
|
{
|
|
method:'GET',
|
|
url:'admin/readerManageAction_exportReader.action',
|
|
callback:function(data) {
|
|
showInfo("数据已导出:<a href='" + basePath + data + "'>点击下载</a>");
|
|
}
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function showInfo(msg) {
|
|
$("#div_info").html(msg);
|
|
$("#modal_info").modal('show');
|
|
}
|