设置请求头
axios({
method: 'get',
url: url,
headers: {
'Content-Type': 'application/x-www-form-urlencoded; charset=UTF-8'
}, //this is important !
data: data, //this is important !
params: data //this is important !
})