axiosReq2.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. import axios from "axios";
  2. import router from "@/router";
  3. import { ElLoading, ElMessage, ElMessageBox } from "element-plus";
  4. import { getToken, setToken } from "@/utils/auth";
  5. import { AxiosConfigTy, AxiosReqTy, ObjTy } from "~/common";
  6. import { useUserStore } from "@/store/user";
  7. let reqConfig: any;
  8. let loadingE: any;
  9. const service: any = axios.create();
  10. // 请求拦截
  11. service.interceptors.request.use(
  12. (request: AxiosReqTy) => {
  13. // token setting
  14. request.headers["AUTHORIZE_TOKEN"] = getToken();
  15. request.headers["token"] = "4f51529071dc4c8f9ed0677f7811e530";
  16. request.data["OperatorId"] = "1656481036138";
  17. /* download file*/
  18. if (request.isDownLoadFile) {
  19. request.responseType = "blob";
  20. }
  21. /* upload file*/
  22. if (request.isUploadFile) {
  23. request.headers["Content-Type"] = "application/json";
  24. }
  25. reqConfig = request;
  26. if (request.bfLoading) {
  27. loadingE = ElLoading.service({
  28. lock: true,
  29. text: "数据载入中",
  30. // spinner: 'el-icon-ElLoading',
  31. background: "rgba(0, 0, 0, 0.1)",
  32. });
  33. }
  34. /*
  35. *params会拼接到url上
  36. * */
  37. if (request.isParams) {
  38. request.params = request.data;
  39. request.data = {};
  40. }
  41. return request;
  42. },
  43. (err: any) => {
  44. Promise.reject(err);
  45. }
  46. );
  47. // 响应拦截
  48. service.interceptors.response.use(
  49. (res: any) => {
  50. if (reqConfig.afHLoading && loadingE) {
  51. loadingE.close();
  52. }
  53. // 如果是下载文件直接返回
  54. if (reqConfig.isDownLoadFile) {
  55. return res;
  56. }
  57. const { flag, msg, isNeedUpdateToken, updateToken, code } = res.data;
  58. //更新token保持登录状态
  59. if (isNeedUpdateToken) {
  60. setToken(updateToken);
  61. }
  62. const successCode = "0,200,20000";
  63. if (successCode.includes(code)) {
  64. return res.data;
  65. } else {
  66. if (code === 403) {
  67. ElMessageBox.confirm("请重新登录", {
  68. confirmButtonText: "重新登录",
  69. cancelButtonText: "取消",
  70. type: "warning",
  71. }).then(() => {
  72. const userStore = useUserStore();
  73. userStore.resetState().then(() => {
  74. router.push({ path: "/login" });
  75. });
  76. });
  77. }
  78. if (reqConfig.isAlertErrorMsg) {
  79. ElMessage({
  80. message: msg,
  81. type: "error",
  82. duration: 2 * 1000,
  83. });
  84. }
  85. //返回错误信息
  86. //如果未catch 走unhandledrejection进行收集
  87. //注:如果没有return 则,会放回到请求方法中.then ,返回的res为 undefined
  88. return Promise.reject(res.data);
  89. }
  90. },
  91. (err: any) => {
  92. /*http错误处理,处理跨域,404,401,500*/
  93. if (loadingE) loadingE.close();
  94. ElMessage({
  95. message: err,
  96. type: "error",
  97. duration: 2 * 1000,
  98. });
  99. //如果是跨域
  100. //Network Error,cross origin
  101. const errObj: ObjTy = {
  102. msg: err.toString(),
  103. reqUrl: reqConfig.baseURL + reqConfig.url,
  104. params: reqConfig.isParams ? reqConfig.params : reqConfig.data,
  105. };
  106. return Promise.reject(JSON.stringify(errObj));
  107. }
  108. );
  109. export function axiosReq({
  110. url,
  111. data,
  112. method,
  113. isParams,
  114. bfLoading,
  115. afHLoading,
  116. isUploadFile,
  117. isDownLoadFile,
  118. baseURL,
  119. timeout,
  120. isAlertErrorMsg = true,
  121. }: AxiosConfigTy): any {
  122. return service({
  123. url: url,
  124. method: method ?? "get",
  125. data: data ?? {},
  126. isParams: isParams ?? false,
  127. bfLoading: bfLoading ?? false,
  128. afHLoading: afHLoading ?? true,
  129. isUploadFile: isUploadFile ?? false,
  130. isDownLoadFile: isDownLoadFile ?? false,
  131. isAlertErrorMsg: isAlertErrorMsg,
  132. baseURL: baseURL ?? import.meta.env.VITE_WEB_BASE_URL,
  133. timeout: timeout ?? 15000,
  134. });
  135. }
  136. export default axiosReq;