http.interceptor.js 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. const install = (Vue, vm) => {
  2. const httpConfig = {
  3. baseUrl: vm.config.baseUrl,
  4. loadingText: '努力加载中~',
  5. loadingTime: 800,
  6. originalData: true,
  7. dataType: 'text'
  8. };
  9. Vue.prototype.$u.http.setConfig(httpConfig);
  10. let isRefreshing = false;
  11. Vue.prototype.$u.http.interceptor.request = (config) => {
  12. const { url } = config;
  13. const { vuex_token } = vm;
  14. if (vuex_token) {
  15. config.header.Authorization = `Bearer ${vuex_token}`;
  16. }
  17. config.url = `${url}?t=${Date.now()}`;
  18. const noTokenList = [
  19. '/client/wechat/h5/code/',
  20. '/client/auth/sendSmsCodeV2',
  21. '/client/auth/verifyCodeV2',
  22. '/client/auth/loginToWxOpenId',
  23. '/client/auth/sendSmsCodeV3',
  24. '/client/auth/loginToMobile'
  25. ];
  26. if (noTokenList.includes(url)) {
  27. config.header.noToken = true;
  28. }
  29. return config;
  30. };
  31. Vue.prototype.$u.http.interceptor.response = (res) => {
  32. const { data } = res;
  33. if (data) {
  34. const jsonBigint = require('json-bigint')({ storeAsString: true });
  35. res = jsonBigint.parse(data);
  36. const { code, msg } = res;
  37. if (code === 200) {
  38. return res;
  39. } else if (code === 401 || (code === 400 && msg === '令牌不能为空')) {
  40. if (!isRefreshing) {
  41. login(vm);
  42. isRefreshing = true;
  43. }
  44. return false;
  45. } else {
  46. const noTipMsg = ['无任何订单'];
  47. const index = noTipMsg.findIndex((item) => msg?.indexOf(item) > -1);
  48. if (index < 0) {
  49. uni.showToast({
  50. title: res.msg || '程序错误!',
  51. duration: 2000,
  52. icon: 'none'
  53. });
  54. }
  55. return false;
  56. }
  57. } else {
  58. uni.showToast({
  59. title: '程序错误!',
  60. duration: 2000,
  61. icon: 'error'
  62. });
  63. return false;
  64. }
  65. };
  66. };
  67. const login = (vm) => {
  68. const backUrl = location.href;
  69. const openidPage = vm.config.onlyWxLogin;
  70. const needValidPage = openidPage.filter((item) => backUrl.includes(item));
  71. const ua = window.navigator.userAgent.toLowerCase();
  72. if (ua.includes('micromessenger')) {
  73. if (backUrl.indexOf('backUrl') === -1) {
  74. vm.$u.route('pages/wechatLogin/wechatLogin', { backUrl: encodeURIComponent(backUrl), loginType: needValidPage.length ? 2 : 1 });
  75. }
  76. } else {
  77. if (backUrl.indexOf('backUrl') === -1) {
  78. localStorage.setItem('backUrl', encodeURIComponent(backUrl));
  79. }
  80. uni.showModal({
  81. title: '提示',
  82. content: '未查询到登录信息或信息已失效, 请重新登录',
  83. showCancel: false,
  84. success: function (res) {
  85. if (res.confirm) {
  86. localStorage.removeItem('lifeData');
  87. uni.redirectTo({
  88. url: '/pages/center/phoneLogin/phoneLogin'
  89. });
  90. }
  91. }
  92. });
  93. }
  94. };
  95. export default {
  96. install
  97. };