http.interceptor.copy.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. // vm,就是我们在vue文件里面的this,所以我们能在这里获取vuex的变量,比如存放在里面的token
  2. const install = (Vue, vm) => {
  3. Vue.prototype.$u.http.setConfig({
  4. baseUrl: vm.config.baseUrl,
  5. loadingText: '努力加载中~',
  6. loadingTime: 800,
  7. originalData: true,
  8. dataType: 'text'
  9. });
  10. let isRefreshing = false;
  11. // 请求拦截,配置Token等参数
  12. Vue.prototype.$u.http.interceptor.request = (config) => {
  13. if (vm.vuex_token) {
  14. config.header.Authorization = `Bearer ${vm.vuex_token}`;
  15. }
  16. // 请求地址加时间戳
  17. config.url = config.url + '?t=' + Date.now();
  18. let 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(config.url)) config.header.noToken = true;
  27. return config;
  28. };
  29. // 响应拦截,判断状态码是否通过
  30. Vue.prototype.$u.http.interceptor.response = (res) => {
  31. if (res.data) {
  32. // 解决出现数据精度缺失问题
  33. const jsonBigint = require('json-bigint')({ storeAsString: true });
  34. res = jsonBigint.parse(res.data);
  35. if (res.code == 200) {
  36. return res;
  37. } else if (res.code == 401 || (res.code == 400 && res.msg == '令牌不能为空')) {
  38. if (!isRefreshing) {
  39. login(vm);
  40. isRefreshing = true;
  41. }
  42. return false;
  43. } else {
  44. // 用来判断时候需要使用当前提示框
  45. const noTipMsg = ['无任何订单'];
  46. const index = noTipMsg.findIndex((item) => res?.msg.indexOf(item) > -1);
  47. if (index < 0) {
  48. uni.showToast({
  49. title: res.msg || '程序错误!',
  50. duration: 2000,
  51. icon: 'none'
  52. });
  53. }
  54. return false;
  55. }
  56. } else {
  57. uni.showToast({
  58. title: '程序错误!',
  59. duration: 2000,
  60. icon: 'error'
  61. });
  62. return false;
  63. }
  64. };
  65. };
  66. const login = (vm) => {
  67. const backUrl = location.href,
  68. openidPage = vm.config.onlyWxLogin, // 只需要传openid的页面集合
  69. needValidPage = openidPage.filter((item) => backUrl.indexOf(item) > -1); // 是否为需要验证的页面集合
  70. // 判断浏览器
  71. const ua = window.navigator.userAgent.toLowerCase();
  72. // 微信中打开
  73. if (ua.match(/MicroMessenger/i) == 'micromessenger') {
  74. // 防止重复跳转
  75. if (backUrl.indexOf('backUrl') === -1) {
  76. vm.$u.route('pages/wechatLogin/wechatLogin', { backUrl: encodeURIComponent(backUrl), loginType: needValidPage.length ? 2 : 1 });
  77. }
  78. } else {
  79. // 普通浏览器中打开
  80. if (backUrl.indexOf('backUrl') === -1) {
  81. localStorage.setItem('backUrl', encodeURIComponent(backUrl));
  82. }
  83. uni.showModal({
  84. title: '提示',
  85. content: '未查询到登录信息或信息已失效, 请重新登录',
  86. showCancel: false,
  87. success: function (res) {
  88. if (res.confirm) {
  89. localStorage.removeItem('lifeData');
  90. uni.redirectTo({
  91. url: '/pages/center/phoneLogin/phoneLogin'
  92. });
  93. }
  94. }
  95. });
  96. }
  97. };
  98. export default {
  99. install
  100. };