You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

90 lines
3.1 KiB

4 months ago
2 weeks ago
4 months ago
2 weeks ago
4 months ago
2 weeks ago
4 months ago
  1. import setObj from '@/config/site.config.js';
  2. let { H5_API, WX_API,httpPrefix } = setObj
  3. // import { H5_API, WX_API,httpPrefix } from '@/config/site.config.js';
  4. // import { refreshToken } from './utils'
  5. // import md5 from 'js-md5'
  6. let secretKey = '22d90e09d1374f0f9e4accd07d333e55'
  7. // 此vm参数为页面的实例,可以通过它引用vuex中的变量
  8. export default (vm) => {
  9. // 初始化请求配置
  10. uni.$u.http.setConfig((config) => {
  11. let prefix = config.prefix?config.prefix: httpPrefix
  12. /* config 为默认全局配置*/
  13. config.baseURL = H5_API+ WX_API + prefix; /* 根域名 */
  14. // console.log(config.baseURL)
  15. // config.header['content-type'] = 'application/x-www-form-urlencoded; charset=UTF-8'
  16. // config.header['tenant-id'] = '1704459882232553474'
  17. // config.header['tenant-id'] = vm.$store.state.user.vuex_userInfo.tenantId || '1704459882232553474'
  18. return config
  19. })
  20. // 请求拦截
  21. uni.$u.http.interceptors.request.use((config) => { // 可使用async await 做异步操作
  22. // 初始化请求拦截器时,会执行此方法,此时data为undefined,赋予默认{}
  23. config.data = config.data || {}
  24. let loginInfo = uni.getStorageSync('loginInfo') || {}
  25. let token = loginInfo.token
  26. if(token) {
  27. config.header.Authorization = 'Bearer ' + token
  28. }
  29. let noToken = config.custom?.noToken
  30. if(noToken&&config.header.Authorization) {
  31. delete config.header.Authorization
  32. }
  33. console.log('config')
  34. console.log(config)
  35. return config
  36. }, config => { // 可使用async await 做异步操作
  37. return Promise.reject(config)
  38. })
  39. // 响应拦截
  40. uni.$u.http.interceptors.response.use(async (response) => { /* 对响应成功做点什么 可使用async await 做异步操作*/
  41. const data = response.data
  42. data.code = data.errorcode
  43. // console.log('请求结果')
  44. // console.log(data)
  45. if(data.code==406&&response.config.url!='member/auth/refresh-token'&&response.config.url!=='member/auth/logout') {
  46. // await refreshToken()
  47. let obj = response.config
  48. let method = obj.method.toLowerCase()
  49. if(method=='get') {
  50. return uni.$u.http[method](obj.url, {params: obj.params})
  51. }else{
  52. return uni.$u.http[method](obj.url, obj.data )
  53. }
  54. }
  55. if(data.code==401) {
  56. console.log('报401的接口')
  57. console.log(response.config.url)
  58. return uni.$u.debounce(vm.$store.commit('goLogin'), 1500)
  59. }
  60. // 自定义参数
  61. const custom = response.config?.custom
  62. if (data.code !== 0&&data.code!=406&&data.code!='200240213') {
  63. console.log('不正常的code')
  64. console.log(data)
  65. // 如果没有显式定义custom的toast参数为false的话,默认对报错进行toast弹出提示
  66. if (custom.toast !== false) {
  67. uni.$u.toast(data.msg)
  68. }
  69. // 如果需要catch返回,则进行reject
  70. if (custom?.catch) {
  71. return Promise.reject(data)
  72. } else {
  73. // 否则返回一个pending中的promise,请求不会进入catch中
  74. return new Promise(() => { })
  75. }
  76. }
  77. return data === undefined ? {} : data
  78. }, (response) => {
  79. // 对响应错误做点什么 (statusCode !== 200)
  80. return Promise.reject(response)
  81. })
  82. }