http.interceptor.js 3.0 KB

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