AnotherTFRequest.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import { ANOTHER_TF_INTERFACE } from '../config'
  2. import { T_STORAGE_KEY } from '../constant'
  3. import store from '../store'
  4. const request = (base_url) => function (url, data = {}, method = 'GET', cb, header = {}) {
  5. return new Promise((resolve, reject) => {
  6. header['Content-Type'] = 'application/json'
  7. const res = uni.getStorageSync(T_STORAGE_KEY) || {}
  8. if (res.token) header.Authorization = res.token
  9. if (res.ssoUserInfo && res.ssoUserInfo.token) header['satoken-user'] = res.ssoUserInfo.token
  10. // showLoading()
  11. let _isShowToast = true
  12. if (data._isShowToast === false) (_isShowToast = false) && delete data._isShowToast
  13. uni.request({
  14. url: base_url + url,
  15. data,
  16. method,
  17. header,
  18. success: (res) => {
  19. // console.log('拦截器', JSON.stringify(res))
  20. // console.log('拦截器', res)
  21. // hideLoading()
  22. if (res.statusCode == 200) {
  23. if ((res.data.code === '200') || (res.data.code === '')) {
  24. resolve(res.data)
  25. } else if ((res.data.code === '20004') || (res.data.code === '20005') || (res.data.code == 40005)) {
  26. uni.showModal({
  27. title: '提示',
  28. content: '账号未登录,请重新登陆!',
  29. success(res) {
  30. if (res.confirm) {
  31. store.dispatch('auth/logoutAction')
  32. setTimeout(() => {
  33. uni.navigateTo({
  34. url: '/pages/login/login'
  35. })
  36. }, 1000)
  37. } else if (res.cancel) {
  38. // uni.navigateBack();
  39. }
  40. }
  41. })
  42. reject(res.data)
  43. } else {
  44. reject(res.data)
  45. if (_isShowToast) {
  46. // #ifndef MP
  47. uni.showToast({
  48. title: res.data.message,
  49. icon: 'none'
  50. })
  51. // #endif
  52. // #ifdef MP
  53. Promise.resolve().then(() => {
  54. Promise.resolve().then(() => {
  55. uni.showToast({
  56. title: res.data.message,
  57. icon: 'none'
  58. })
  59. })
  60. })
  61. // #endif
  62. }
  63. }
  64. } else {
  65. reject(res)
  66. }
  67. },
  68. fail: (res) => {
  69. // hideLoading()
  70. reject(res)
  71. },
  72. complete: () => {
  73. cb && typeof cb === 'function' && cb()
  74. }
  75. })
  76. })
  77. }
  78. export const AnotherTFRequest = request(ANOTHER_TF_INTERFACE)