request.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123
  1. import Vue from 'vue'
  2. import axios from 'axios'
  3. import router from '../router'
  4. import _ from 'lodash'
  5. import { Toast, Notify } from 'vant'
  6. import { getCookieValue } from '../utils'
  7. import { platform } from '../utils/platform'
  8. const host = window.location.host
  9. const domain = host.substring(0, host.indexOf('.')) || host.substring(0, host.indexOf(':'))
  10. const request = axios.create({
  11. withCredentials: true,
  12. baseURL: process.env.API_DOMAIN,
  13. timeout: 50000,
  14. headers: {
  15. 'Content-Type': 'application/json;charset=UTF-8'
  16. }
  17. })
  18. let tingbangSource = 'h5'
  19. if (platform.isAlipay) {
  20. tingbangSource = 'alipay'
  21. } else if (platform.isWeixin) {
  22. tingbangSource = 'wechat'
  23. }
  24. let loading = null
  25. // 当前正在请求的数量
  26. let needLoadingRequestCount = 0
  27. // 显示loading
  28. function showLoading () {
  29. if (needLoadingRequestCount === 0 && !loading) {
  30. loading = Toast.loading({
  31. message: '拼命获取中',
  32. forbidClick: true,
  33. duration: 0
  34. })
  35. }
  36. needLoadingRequestCount++
  37. }
  38. // 隐藏loading
  39. function hideLoading () {
  40. needLoadingRequestCount--
  41. needLoadingRequestCount = Math.max(needLoadingRequestCount, 0) // 做个保护
  42. if (needLoadingRequestCount === 0) {
  43. // 关闭loading
  44. toHideLoading()
  45. }
  46. }
  47. // 防抖:将 300ms 间隔内的关闭 loading 便合并为一次。防止连续请求时, loading闪烁的问题。
  48. function toHideLoading () {
  49. _.debounce(() => {
  50. loading.clear()
  51. loading = null
  52. }, 300)
  53. }
  54. // Add a request interceptor
  55. request.interceptors.request.use(request => {
  56. const requestUrl = request.url
  57. request.headers.token = getCookieValue('afhousetoken')
  58. request.headers.tingbangSource = tingbangSource
  59. if (platform.isWeixin) {
  60. request.headers.wechatToken = getCookieValue('afhousewechatToken')
  61. }
  62. request.url = requestUrl + (requestUrl.indexOf('?') > -1 ? '&' : '?') + 'nextUrl=' + encodeURIComponent(location.href)
  63. // 因为微信开发者工具重复授权,本地开发时写死
  64. if (/^(0|192|10|localhost)|(test$)/.test(domain)) {
  65. // request.url += '&owner_open_id=0c540a8d284b38f84d2f8ad262ab5d2c'
  66. request.headers.wechatToken = '0c540a8d284b38f84d2f8ad262ab5d2c'
  67. }
  68. // 判断当前请求是否设置了不显示Loading
  69. if (request.showLoading) {
  70. showLoading()
  71. }
  72. return request
  73. }, error => {
  74. // 判断当前请求是否设置了不显示Loading
  75. if (loading) {
  76. hideLoading()
  77. }
  78. Notify({
  79. type: 'warning',
  80. message: '请求超时'
  81. })
  82. // Do something with request error
  83. return Promise.reject(error)
  84. })
  85. // Add a response interceptor
  86. request.interceptors.response.use(response => {
  87. // Do something with response data
  88. const { code, url } = response.data
  89. if (loading) {
  90. hideLoading()
  91. }
  92. if (code === 301 && url) {
  93. Vue.cookie.delete('afhousewechatToken')
  94. location.replace(url)
  95. } else if (code === 403) {
  96. router.replace({
  97. path: '/login',
  98. query: {
  99. nextUrl: router.currentRoute.fullPath
  100. }
  101. })
  102. }
  103. return response.data
  104. }, (error) => {
  105. if (loading) {
  106. hideLoading()
  107. }
  108. Notify({
  109. type: 'danger',
  110. message: '数据获取失败!'
  111. })
  112. // Do something with response error
  113. return Promise.reject(error)
  114. })
  115. export default request