Blame view

src/store/request.js 813 Bytes
87eade409   范牧   验光数据填充检测
1
  const DOMAIN = 'https://api.glass.xiuyetang.com'
e2eaa8a22   范牧   请求地址提取
2
3
  
  export default async function request({
87eade409   范牧   验光数据填充检测
4
5
6
7
    url,
    method = 'post',
    data = {},
    header = {
089dce19d   范牧   支付修改
8
      'Content-Type': 'application/x-www-form-urlencoded',
87eade409   范牧   验光数据填充检测
9
10
11
12
13
14
15
16
17
18
    },
    timeout = 3000,
    withCredentials = false, // 跨域请求时是否携带凭证(cookies)
    // sslVerify: true, // 验证 ssl 证书
    success,
    fail = (res) => {
      console.log('fail status === > ', res)
    },
    complete = (res) => {
      console.log('complete status === > ', res)
089dce19d   范牧   支付修改
19
    },
e2eaa8a22   范牧   请求地址提取
20
  }) {
87eade409   范牧   验光数据填充检测
21
    const uid = uni.getStorageSync('uid')
089dce19d   范牧   支付修改
22
    const openid = uni.getStorageSync('openid')
87eade409   范牧   验光数据填充检测
23
24
25
    data = {
      uid,
      openid,
089dce19d   范牧   支付修改
26
      ...data,
87eade409   范牧   验光数据填充检测
27
28
29
30
31
32
33
34
35
36
37
    }
    uni
      .request({
        url: DOMAIN + url,
        method,
        data,
        header,
        timeout,
        withCredentials,
        success,
        fail,
089dce19d   范牧   支付修改
38
        complete,
87eade409   范牧   验光数据填充检测
39
40
      })
  }