// 导出表格$(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); } })});
添加回答
举报
0/150
提交
取消