zhangxiaoxu123
2023-04-03 3c38aafd3b6db169fe2039affbbcc7bf36176d3a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 引入配置
import config from '@/common/config'
// 初始化请求配置
uni.$u.http.setConfig((defaultConfig) => {
    /* defaultConfig 为默认全局配置 */
    defaultConfig.baseURL = config.baseUrl /* 根域名 */
    defaultConfig.header = config.header
    return defaultConfig
})
 
module.exports = (vm) => {
    require('./requestInterceptors')(vm)
    require('./responseInterceptors')(vm)
}