Blame view
src/store/request.js
905 Bytes
87eade409 验光数据填充检测 |
1 |
const DOMAIN = 'https://api.glass.xiuyetang.com' |
78c1e1372 auto commit the c... |
2 |
// const DOMAIN = 'http://localhost:8062' |
e2eaa8a22 请求地址提取 |
3 |
export default async function request({ |
87eade409 验光数据填充检测 |
4 5 |
url, method = 'post', |
78c1e1372 auto commit the c... |
6 7 8 9 |
data = { wood_cate: 818, shop_id:12 }, |
87eade409 验光数据填充检测 |
10 |
header = { |
089dce19d 支付修改 |
11 |
'Content-Type': 'application/x-www-form-urlencoded', |
78c1e1372 auto commit the c... |
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 |
}) } |