index.js 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. import Request from './request'
  2. import apiList from './apis.js'
  3. import store from '@/shopro/store/index.js'
  4. const shoproRequest = new Request();
  5. export default function http(
  6. url,
  7. data = {},
  8. toastBefore = '', // 请求前加载提示
  9. toastAfter = true, // 请求后错误提示
  10. ) {
  11. let api = getApiPath(url);
  12. /* 请求之前拦截器 */
  13. shoproRequest.interceptor.request((config, cancel) => {
  14. let token = uni.getStorageSync('token');
  15. if (api.auth && !token) {
  16. store.dispatch('showAuthModal');
  17. uni.hideLoading()
  18. throw (`暂未登录,已阻止此次API请求: '${api.url}'`);
  19. }
  20. token && shoproRequest.setConfig(config => {
  21. config.header.token = token
  22. })
  23. if (toastBefore !== '') {
  24. uni.showLoading({
  25. title: toastBefore,
  26. mask: true
  27. });
  28. }
  29. return config
  30. });
  31. /* 请求之后拦截器 */
  32. shoproRequest.interceptor.response((response) => {
  33. uni.hideLoading();
  34. if (response.code === 0) {
  35. if (toastAfter) {
  36. uni.showToast({
  37. title: response.msg || '请求出错,稍后重试',
  38. icon: 'none',
  39. duration: 1000,
  40. mask: true
  41. });
  42. }
  43. }
  44. // token过期注销
  45. if (response.code === 401) {
  46. store.dispatch('logout');
  47. store.dispatch('showAuthModal');
  48. throw (`登录已过期或注销,已阻止此次API请求: '${api.url}'`);
  49. }
  50. return response
  51. })
  52. return shoproRequest.request({
  53. url: api.url,
  54. data,
  55. method: api.method
  56. })
  57. }
  58. // 组装接口路径
  59. function getApiPath(url) {
  60. let apiArray = url.split(".");
  61. let api = apiList;
  62. apiArray.forEach(v => {
  63. api = api[v];
  64. });
  65. return api;
  66. }