|
|
|
@ -10,7 +10,7 @@ const DELETE = 'DELETE';
|
|
|
|
|
|
|
|
|
|
function request(method, url, data, hasToke = true) { |
|
|
|
|
let token = wx.getStorageSync('access_token') |
|
|
|
|
let Authorization = token && hasToke ? `Bearer ${token}` : null; |
|
|
|
|
let Authorization = token && hasToke ? `Bearer ${token}` : 'Basic YXBwOmFwcA=='; |
|
|
|
|
if (method.toUpperCase() === GET) { |
|
|
|
|
let city = wx.getStorageSync('city') |
|
|
|
|
city = city ? city : defaultCity |
|
|
|
@ -24,10 +24,9 @@ function request(method, url, data, hasToke = true) {
|
|
|
|
|
return new Promise(function (resolve, reject) { |
|
|
|
|
let header = { |
|
|
|
|
'content-type': 'application/json', |
|
|
|
|
'Authorization': Authorization |
|
|
|
|
}; |
|
|
|
|
if (Authorization) { |
|
|
|
|
header['Authorization'] = Authorization |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
wx.request({ |
|
|
|
|
url: baseURL + url, |
|
|
|
|
method: method, |
|
|
|
|