Blame view
src/store/request.js
905 Bytes
87eade409
|
1 |
const DOMAIN = 'https://api.glass.xiuyetang.com' |
78c1e1372
![]() |
2 |
// const DOMAIN = 'http://localhost:8062' |
e2eaa8a22
|
3 |
export default async function request({ |
87eade409
|
4 5 |
url, method = 'post', |
78c1e1372
![]() |
6 7 8 9 |
data = { wood_cate: 818, shop_id:12 }, |
87eade409
|
10 |
header = { |
089dce19d
|
11 |
'Content-Type': 'application/x-www-form-urlencoded', |
78c1e1372
![]() |
12 |
// 'Appid': 6 |
87eade409
|
13 14 15 16 17 18 19 20 21 22 |
}, timeout = 3000, withCredentials = false, // 跨域请求时是否携带凭证(cookies) // sslVerify: true, // 验证 ssl 证书 success, fail = (res) => { console.log('fail status === > ', res) }, complete = (res) => { console.log('complete status === > ', res) |
089dce19d
|
23 |
}, |
e2eaa8a22
|
24 |
}) { |
87eade409
|
25 |
const uid = uni.getStorageSync('uid') |
089dce19d
|
26 |
const openid = uni.getStorageSync('openid') |
87eade409
|
27 28 29 |
data = { uid, openid, |
089dce19d
|
30 |
...data, |
87eade409
|
31 32 33 34 35 36 37 38 39 40 41 |
} uni .request({ url: DOMAIN + url, method, data, header, timeout, withCredentials, success, fail, |
089dce19d
|
42 |
complete, |
87eade409
|
43 44 |
}) } |