axios({
method: "get",
url:
"http://localhost/bespalov_trade/hs/api/GetInfoByTel?tel=9999999999",
auth: {
username: "web",
password: "123"
}
})
.then(function(response) {
console.log(response);
})
.catch(function(error) {
console.log(error);
});