http.interceptor.js 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. });
  8. // 请求拦截,配置Token等参数
  9. Vue.prototype.$u.http.interceptor.request = (config) => {
  10. if (vm.vuex_token) {
  11. config.header.Authorization = `Bearer ${vm.vuex_token}`;
  12. }
  13. // 请求地址加时间戳
  14. config.url = config.url + '?t=' + Date.now();
  15. let noTokenList = ['/client/wechat/h5/code/', '/client/auth/sendSmsCodeV2', '/client/auth/verifyCodeV2', '/client/auth/loginToWxOpenId', '/client/auth/sendSmsCodeV3', '/client/auth/loginToMobile'];
  16. if (noTokenList.includes(config.url)) config.header.noToken = true;
  17. return config;
  18. };
  19. // 响应拦截,判断状态码是否通过
  20. Vue.prototype.$u.http.interceptor.response = (res) => {
  21. if (res.code == 200) {
  22. return res;
  23. } else if (res.code == 401 || res.code == 400) {
  24. const backUrl = location.href,
  25. openidPage = vm.config.onlyWxLogin, // 只需要传openid的页面集合
  26. needValidPage = openidPage.filter((item) => backUrl.indexOf(item) > -1); // 是否为需要验证的页面集合
  27. // 判断浏览器
  28. const ua = window.navigator.userAgent.toLowerCase();
  29. // 微信中打开
  30. if (ua.match(/MicroMessenger/i) == 'micromessenger') {
  31. // 防止重复跳转
  32. if (backUrl.indexOf('backUrl') === -1) {
  33. vm.$u.route('pages/wechatLogin/wechatLogin', { backUrl: encodeURIComponent(backUrl), loginType: needValidPage.length ? 2 : 1 });
  34. }
  35. } else {
  36. // 普通浏览器中打开
  37. if (backUrl.indexOf('backUrl') === -1) {
  38. localStorage.setItem('backUrl', encodeURIComponent(backUrl));
  39. }
  40. uni.showModal({
  41. title: '提示',
  42. content: '未查询到登录信息或信息已失效, 请重新登录',
  43. showCancel: false,
  44. success: function (res) {
  45. if (res.confirm) {
  46. localStorage.removeItem('lifeData');
  47. uni.redirectTo({
  48. url: '/pages/center/phoneLogin/phoneLogin'
  49. });
  50. }
  51. }
  52. });
  53. }
  54. return false;
  55. } else {
  56. uni.showToast({
  57. title: res.msg || '程序错误!',
  58. duration: 2000,
  59. icon: 'none'
  60. });
  61. return false;
  62. }
  63. };
  64. };
  65. export default {
  66. install
  67. };