index.js 408 B

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