290144e9
易尊强
第一次
|
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
import store from '@/store'
import define from './define'
const host = define.baseURL
const defaultOpt = {
load: true
}
// 示例
// async xxxx(code) {
// var res = await this.request({
// url: '/api/System/DictionaryData/All',
// method: 'GET',
// data,
// options: {
// load: false
// }
// })
// if (!res) return
// console.log(res)
// }
function request(config) {
config.options = Object.assign(defaultOpt, config.options)
const token = uni.getStorageSync('token') || ''
let header = {
"Content-Type": "application/json;charset=UTF-8/x-www-form-urlencoded",
...config.header
}
if (token) header['Authorization'] = token
let url = config.url.indexOf('http') > -1 ? config.url : host + config.url
if (config.url === '/api/oauth/Login') {
url += '?client_id=admin&client_secret=123456&scope=all&grant_type=password'
}
if (config.options.load) {
uni.showLoading({
title: config.options.loadText || ''
})
}
return new Promise((resolve, reject) => {
uni.request({
url: url,
data: config.data || null,
method: config.method || 'GET',
header: header,
timeout: define.timeout,
success: res => {
uni.hideLoading()
if (res.statusCode === 200) {
if (res.data.code == 200) {
resolve(res.data)
}
// else {
// ajaxError(res.data)
// reject(res.data.msg)
// }
}
// else {
// ajaxError(res.data)
// reject(res.errMsg)
// }
},
fail: err => {
uni.hideLoading()
reject(err)
}
})
})
}
// function ajaxError(data) {
// uni.showToast({
// title: data.msg || '请求出错,请重试',
// icon: 'none',
// complete() {
// if (data.code === 600 || data.code === 601 || data.code === 602) {
// setTimeout(() => {
// store.dispatch('user/resetToken').then(() => {
// uni.reLaunch({
// url: '/pages/login/index'
// })
// })
// }, 1500)
// }
// }
// })
// }
export default request
|