request.js
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
// export const baseURL = 'http://health.shs.broing.cn' // 测试
export const baseURL = 'https://dajiankang.y.broing.cn' // 线上
// http://healthmall.shs.broing.cn/api.html 接口文档
// http://healthmall.shs.broing.cn/LPsvUFMhmT.php/ 后台
// admin
// bro123
export const request = (options) => {
return new Promise((resolve, reject) => {
uni.request({
url: baseURL + options.url, //接口地址:前缀+方法中传入的地址
method: options.method || 'GET', //请求方法:传入的方法或者默认是“GET”
data: options.data || {}, //传递参数:传入的参数或者默认传递空集合
header: {
'token': uni.getStorageSync("token") || "" //自定义请求头信息
},
success: (res) => {
console.log(res, uni.getStorageSync('token'));
//返回的数据(不固定,看后端接口,这里是做了一个判断,如果不为true,用uni.showToast方法提示获取数据失败)
if (res.data.code == 1) {
resolve(res.data.data)
} else {
if(res.data.code== 401){
uni.navigateTo({
url:'/pages/login/login'
})
uni.clearStorageSync()
}
reject(res.data.msg)
}
// 如果不满足上述判断就输出数据
},
// 这里的接口请求,如果出现问题就输出接口请求失败
fail: (err) => {
console.log(err)
reject(err)
}
})
})
}