MainRequest.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. import { DOMAIN_PREFIX } from '../config/api'
  2. import { showLoading, hideLoading } from './plugIn/globalLoading'
  3. import { J_STORAGE_KEY } from '../config/constant'
  4. const request = (base_url) => function (url, data = {}, method = 'GET', cb) {
  5. return new Promise((resolve, reject) => {
  6. const header = {
  7. 'Content-Type': 'application/json'
  8. }
  9. const res = uni.getStorageSync(J_STORAGE_KEY)
  10. const token = res.token
  11. if (token) {
  12. header.Authorization = token
  13. }
  14. showLoading()
  15. uni.request({
  16. url: base_url + url,
  17. data,
  18. method,
  19. header,
  20. success: (res) => {
  21. // console.log('拦截器', JSON.stringify(res))
  22. // console.log('拦截器', res)
  23. hideLoading()
  24. if (res.statusCode == 200) {
  25. if (res.data.code === '200' || res.data.code === '') {
  26. resolve(res.data)
  27. } else if (res.data.code === '20004' || res.data.code === '20005') {
  28. uni.removeStorageSync(J_STORAGE_KEY)
  29. uni.navigateTo({
  30. url: '/pages_category_page2/userModule/login'
  31. })
  32. reject(res.data)
  33. } else {
  34. uni.showToast({
  35. title: res.data.message,
  36. icon: 'none'
  37. })
  38. reject(res.data)
  39. }
  40. } else {
  41. reject(res)
  42. }
  43. },
  44. fail: (res) => {
  45. hideLoading()
  46. reject(res)
  47. },
  48. complete: () => {
  49. cb && typeof cb === 'function' && cb()
  50. }
  51. })
  52. })
  53. }
  54. // 不带token接口请求,首页
  55. const request1 = (base_url) => function (url, data = {}, method = 'GET', cb) {
  56. return new Promise((resolve, reject) => {
  57. const header = {
  58. 'Content-Type': 'application/json',
  59. 'tenant': 'MDAwMA=='
  60. }
  61. showLoading()
  62. uni.request({
  63. url: base_url + url,
  64. data,
  65. method,
  66. header,
  67. success: (res) => {
  68. hideLoading()
  69. if (res.data.code === '200' || data.code === '') {
  70. resolve(res.data)
  71. } else {
  72. reject(res)
  73. }
  74. },
  75. fail: (res) => {
  76. hideLoading()
  77. reject(res)
  78. },
  79. complete: () => {
  80. cb && typeof cb === 'function' && cb()
  81. }
  82. })
  83. })
  84. }
  85. export const MainRequest = request(DOMAIN_PREFIX)
  86. export const IndexRequest = request1(DOMAIN_PREFIX)