axios2.js 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. import axios from 'axios'
  2. import Cookie from 'js-cookie'
  3. const request = axios.create({
  4. baseURL: import.meta.env.VITE_API2_PREFIX,
  5. })
  6. import { ElNotification } from 'element-plus'
  7. // 用于中止web请求
  8. // const abortController = new AbortController()
  9. request.interceptors.request.use(
  10. (config) => {
  11. const token = Cookie.get('indent-token')
  12. console.log(token, 'token')
  13. if (token) config.headers.Authorization = `Bearer ${token}`
  14. const crmID = Cookie.get('indent-crm-id')
  15. console.log(crmID, 'indent crm id')
  16. if (crmID) config.headers.crm_id = crmID || ''
  17. const crmFullName = Cookie.get('indent-crm-fullname')
  18. console.log(crmFullName, 'indent crm fullname')
  19. if (crmFullName) config.headers.crm_full_name = crmFullName || ''
  20. return config
  21. },
  22. (error) => {
  23. return Promise.reject(error)
  24. },
  25. )
  26. request.interceptors.response.use(
  27. (response) => {
  28. const { data } = response
  29. // 状态码200,code=1 成功
  30. if (data.code != 1) {
  31. if (data instanceof Blob) {
  32. // 文件流
  33. return data
  34. } else {
  35. ElNotification({
  36. message: data.msg,
  37. type: 'error',
  38. duration: 3 * 1000,
  39. })
  40. }
  41. return Promise.reject(new Error(data || 'Error'))
  42. } else {
  43. return data
  44. }
  45. },
  46. (error) => {
  47. console.log('error: ', error.response)
  48. const { data } = error.response
  49. if (typeof data.msg === 'undefined') {
  50. ElNotification({
  51. message: 'Error:请联系管理员',
  52. type: 'error',
  53. duration: 5 * 1000,
  54. })
  55. }
  56. if (axios.isCancel(error)) {
  57. // 取消请求的情况下,终端Promise调用链
  58. return new Promise(() => {})
  59. } else {
  60. return Promise.reject(error)
  61. }
  62. },
  63. )
  64. export default request