http.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. import { message } from './index'
  2. import store from '@/store'
  3. import { LOGIN_OUT } from '@/store/mutation-types'
  4. import router from './router'
  5. import { WX_APP_ID, VERSION } from './config'
  6. export const SUCCESS_CODE = 0 //成功
  7. export const AUTH_INVALID = 401
  8. export const AUTH_INVALID_2 = 403
  9. export const ERROR_CODE = -9999 //系统异常
  10. const AUTH_ERROR = [AUTH_INVALID, AUTH_INVALID_2]
  11. export const setURL = (url, args) => {
  12. if (typeof url === 'undefined') {
  13. throw 'no url!'
  14. }
  15. if (!args) return url
  16. for (var i = 0; i < args.length; i++) {
  17. if (url.indexOf('{?}') < 0) {
  18. break
  19. }
  20. url = url.replace(/\{\?\}/, args[i] + '')
  21. }
  22. // 最后是否有/{?}
  23. if (url.lastIndexOf('/{?}') > -1) {
  24. url = url.substr(0, url.lastIndexOf('/{?}'))
  25. }
  26. return url
  27. }
  28. const COMMON_HEADER = {
  29. os: 1,
  30. version: VERSION,
  31. deviceCode: '',
  32. bundleId: 'com.supermart.mart',
  33. channel: 'supermart',
  34. clientId: WX_APP_ID
  35. }
  36. /**
  37. * option {
  38. loading: boolean true 菊花, false, 没有菊花( 相当于无声请求)
  39. showMsg: 是否显示错误信息, 如果是
  40. loadingText: 请稍等...
  41. url: '' //可以传apiurl中的key, 也可以传整个url
  42. param: 作为post数据传过去,json对象或者字符串, 如果是字符串那么可能是body形式传过去,
  43. pathParam: 接口名称中可能会有参数 []从数组中传过来,
  44. method: //默认POST,
  45. type: '默认application/json', 'form': 'x-www-form-urlencoded',
  46. token: 测试用的token
  47. }
  48. 返回 Promise
  49. */
  50. let loginFlag = false
  51. export const request = (url, option) => {
  52. url = setURL(url, option.pathParam)
  53. let hasLoading = option.loading
  54. if (hasLoading) {
  55. message.showLoading()
  56. }
  57. let data = option.param || {}
  58. let track = { ...COMMON_HEADER }
  59. if (store.state.pid) {
  60. track.pid = store.state.pid
  61. }
  62. if (store.state.channel) {
  63. track.channel = store.state.channel
  64. }
  65. if (store.state.adid) {
  66. track.adid = store.state.adid
  67. }
  68. if (store.state.clickId) {
  69. track.clickId = store.state.clickId
  70. }
  71. if (store.state.callback) {
  72. track.callback = store.state.callback
  73. }
  74. if (store.state.shareUserId) {
  75. track.pid = store.state.shareUserId
  76. }
  77. let header = {
  78. 'content-type': 'application/json',
  79. track: JSON.stringify(track)
  80. }
  81. if (option.type == 'form') {
  82. header['content-type'] = 'x-www-form-urlencoded'
  83. }
  84. if (data.token) {
  85. header.Authentication = data.token
  86. delete data.token
  87. } else if (store.state.token) {
  88. header.Authentication = store.state.token
  89. }
  90. return new Promise((resolve, reject) => {
  91. uni.request({
  92. url: url,
  93. data: data,
  94. method: option.method ? option.method : 'POST',
  95. header: header,
  96. success: (res) => {
  97. if (hasLoading) {
  98. message.hideLoading()
  99. }
  100. if (res.statusCode == 200) {
  101. if (res.data.code == 0) {
  102. resolve(res.data)
  103. } else {
  104. if (AUTH_ERROR.includes(res.data.code)) {
  105. store.commit(LOGIN_OUT)
  106. }
  107. if (hasLoading || option.showMsg) {
  108. message.error(res.data.msg)
  109. }
  110. reject(res.data)
  111. }
  112. } else {
  113. if (AUTH_ERROR.includes(res.statusCode)) {
  114. if (loginFlag) return
  115. loginFlag = true
  116. store.commit(LOGIN_OUT)
  117. router.login()
  118. setTimeout(() => {
  119. loginFlag = false
  120. }, 1500)
  121. reject(res)
  122. return
  123. }
  124. if (hasLoading || option.showMsg) {
  125. message.error('网络异常')
  126. }
  127. reject(res)
  128. }
  129. },
  130. fail: (res) => {
  131. if (hasLoading || option.showMsg) {
  132. message.hideLoading()
  133. message.error('网络异常')
  134. }
  135. reject(res)
  136. },
  137. complete: (res) => {
  138. uni.stopPullDownRefresh()
  139. }
  140. })
  141. })
  142. }
  143. export const post = (url, param, option = {}) => {
  144. return request(url, { ...option, param })
  145. }
  146. export const postL = (url, param, option = {}) => {
  147. return request(url, { ...option, param, loading: true })
  148. }
  149. export const get = (url, param, option = {}) => {
  150. option.method = 'GET'
  151. return post(url, param, option)
  152. }
  153. export const getL = (url, param, option = {}) => {
  154. option.method = 'GET'
  155. return postL(url, param, option)
  156. }