vue请求接口axios延时
var data = { "id": "213"};
//默认请求时间为5秒,因为请求数据量较大,增加请求链接时间到2分钟 = 120000毫秒 {timeout: 120000}
this.axios.get(`test/api/exporApi?paramStr=` + JSON.stringify(data),{timeout: 120000}).then(res => {
if (res.code == 1) {
if (null != res.data) {
window.open(res.data.path)
}
}
}).catch(error => {
console.log(error);
});