const data = {
method: 'GET',
url: '/code',
params: { phone },
};
test( { method = 'GET', url = '', headers, body, params }){
const req = {
method,
url,
data: body,
params,
headers
};
}
const res = test(data);