// 导出表格
$(document).on("click",".exportbtn",function () {
$.ajax({
type:"get",
url:APIURL+"/admin/order_export",
data:{
api_token:token,
year:year,
month:month,
period:period
},
success:function (data) {
var str = APIURL+"/admin/order_export?api_token="+token+"&year="+year+"&month="+month+"&period="+period+"&agent_name=";
// location.href = str;
window.open(str);
},
error:function (XMLHttpRequest, textStatus, errorThrown) {
alert(XMLHttpRequest.responseJSON.response.msg);
}
})
});
冉冉说
相关分类