index.js 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295
  1. import http from './interface'
  2. import { platform } from '../utils/index'
  3. import { webLogin, mini_env, replaceStringInObject } from '@/common/utils/util'
  4. import store from '@/store/index.js'
  5. import { goLoginPage } from '@/mixins/index.js'
  6. import { setStorage, getStorage, removeStorage } from '@/common/utils/storage.js'
  7. const program = {
  8. H5: 'wap',
  9. APP: 'app',
  10. APPNVUE: 'app',
  11. WEIXIN: 'miniProgram'
  12. }
  13. const whiteCodes = [200, 201, 4444]
  14. export const $http = (url, method, data, json, loadingBool = false, isExecute = true, isForm = false) => {
  15. //设置请求前拦截器
  16. http.interceptor.request = config => {
  17. return new Promise(r => {
  18. mini_env(bool => {
  19. if (loadingBool && url !== '/homepage/study') {
  20. uni.showLoading({
  21. title: '加载中...'
  22. })
  23. }
  24. config.header = {
  25. 'content-type': json ? 'application/json' : 'application/x-www-form-urlencoded',
  26. // "x-token": getStorage('token'),
  27. 'x-token': store.getters.token,
  28. APPID: store.getters.appId,
  29. Program: program[platform()],
  30. source: bool ? 'A' : 'B',
  31. miniOpenId: store.getters.miniOpenId,
  32. sharerOpenId: store.getters.sharerOpenId
  33. }
  34. r(true)
  35. })
  36. })
  37. }
  38. //设置请求结束后拦截器
  39. http.interceptor.response = async response => {
  40. //判断返回状态 执行相应操作
  41. if (loadingBool) {
  42. uni.hideLoading()
  43. }
  44. const res = response.data || {}
  45. if (!isExecute) {
  46. return res
  47. }
  48. if (whiteCodes.indexOf(res.code) < 0) {
  49. if (res.message == 'USERPAYING') {
  50. return Promise.reject(new Error(res.message || 'Error'))
  51. }
  52. if (res.code === 1001) {
  53. webLogin(true)
  54. return {}
  55. } else if (res.code === 4001) {
  56. uni.showModal({
  57. title: '提示',
  58. content: '你尚未绑定手机号,无法下单!',
  59. confirmText: '立即绑定',
  60. success: function (res) {
  61. if (res.confirm) {
  62. this.$navToPage({
  63. url: '/packageMine/pages/phone'
  64. })
  65. } else if (res.cancel) {
  66. console.log('用户点击取消')
  67. }
  68. }
  69. })
  70. } else {
  71. if (isForm) {
  72. uni.showModal({
  73. title: '温馨提示',
  74. content: res.message || 'Error',
  75. showCancel: false,
  76. success: function (res) {
  77. if (res.confirm) {
  78. } else if (res.cancel) {
  79. }
  80. }
  81. })
  82. } else {
  83. uni.showModal({
  84. title: '温馨提示',
  85. content: res.message || 'Error',
  86. showCancel: false,
  87. confirmText: '知道了',
  88. success: function (res) {
  89. if (res.confirm) {
  90. } else if (res.cancel) {
  91. }
  92. }
  93. })
  94. }
  95. }
  96. return Promise.reject(new Error(res.message || 'Error'))
  97. } else {
  98. return res
  99. }
  100. }
  101. if (store.getters.token) {
  102. return http.request({
  103. method: method,
  104. url: url,
  105. dataType: 'json',
  106. data
  107. })
  108. } else if (!!~['/user/auth2', '/goods/detail'].indexOf(url)) {
  109. return http.request({
  110. method: method,
  111. url: url,
  112. dataType: 'json',
  113. data
  114. })
  115. } else {
  116. return new Promise((resolve, reject) => {
  117. var i = 0
  118. var digui = function () {
  119. i++
  120. if ((store?.getters?.token && store?.getters?.userId) || i == 60) {
  121. http
  122. .request({
  123. method: method,
  124. url: url,
  125. dataType: 'json',
  126. data: {
  127. ...data,
  128. userId: store.getters.userId
  129. }
  130. })
  131. .then(resolve)
  132. .catch(reject)
  133. } else {
  134. setTimeout(digui, 50)
  135. }
  136. }
  137. digui()
  138. })
  139. }
  140. }
  141. async function login() {
  142. //返回环宇token所需的login code
  143. return new Promise(resolve => {
  144. uni.login({
  145. provider: 'weixin',
  146. success(loginRes) {
  147. resolve(loginRes.code)
  148. },
  149. fail() {}
  150. })
  151. })
  152. }
  153. async function doRequest(response, url) {
  154. var code = await login()
  155. var res = await get('/v1/oauth/refreshToken/code/' + code, {})
  156. if (res && res.data.data.token) {
  157. let config = response.config
  158. setStorage('token', res.data.data.token)
  159. config.header['Authorization'] = res.data.data.token
  160. let json = config.header['Content-Type'] === 'application/json'
  161. const resold = await $http(
  162. url,
  163. config.method,
  164. {
  165. ...config.data
  166. },
  167. json
  168. )
  169. return resold
  170. } else {
  171. uni.clearStorage()
  172. uni.showToast({
  173. title: '授权失效,请重新登录',
  174. duration: 1000
  175. })
  176. this.$navToPage({
  177. url: '/pages/login/auth'
  178. })
  179. return false
  180. }
  181. }
  182. function postJson(url, data, loadingBool, isExecute, isForm) {
  183. return $http(url, 'POST', data, true, loadingBool, isExecute, isForm)
  184. }
  185. function post(url, data, loadingBool, isExecute, isForm) {
  186. return $http(url, 'POST', data, false, loadingBool, isExecute, isForm)
  187. }
  188. function get(url, data, loadingBool) {
  189. return $http(url, 'GET', data, false, loadingBool)
  190. }
  191. function put(url, data, loadingBool) {
  192. return $http(url, 'PUT', data, true, loadingBool)
  193. }
  194. function del(url, data, loadingBool) {
  195. return $http(url, 'DELETE', data, true, loadingBool)
  196. }
  197. //封装的通用请求方法
  198. export const axios = function (obj = {}) {
  199. if (typeof obj !== 'object') {
  200. throw new Error('arguments must be object')
  201. }
  202. if (!obj.url) {
  203. throw new Error('url not defined')
  204. }
  205. return new Promise((resolve, reject) => {
  206. if (obj.isLoading) {
  207. uni.showLoading({
  208. title: '加载中',
  209. mask: true
  210. })
  211. }
  212. let _url = process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + obj.url
  213. let isGet = obj.method && obj.method.toLowerCase() == 'get'
  214. let isQuery = obj.isQuery
  215. if (isGet || isQuery) {
  216. _url +=
  217. '?' +
  218. Object.entries(obj.params || {})
  219. .map(item => item.join('='))
  220. .join('&')
  221. }
  222. let _type = 'application/x-www-form-urlencoded'
  223. if (obj.type == 'json') {
  224. _type = 'application/json'
  225. }
  226. uni.request({
  227. url: _url,
  228. data: isGet || isQuery ? '' : obj.params || '',
  229. header: {
  230. 'content-type': _type,
  231. 'x-token': store.getters.token
  232. },
  233. method: obj.method ? obj.method : 'POST',
  234. success: function (ress) {
  235. if (obj.isLoading) {
  236. uni.hideLoading()
  237. }
  238. const res = replaceStringInObject(
  239. ress.data,
  240. 'https://zfire-jsm-h.oss-cn-shenzhen.aliyuncs.com/',
  241. process.env.VUE_APP_BASE_URL + process.env.VUE_APP_BASE_API + '/common/img/get?key='
  242. )
  243. if (whiteCodes.indexOf(res.code) < 0) {
  244. if (res.code === 1001) {
  245. webLogin(true)
  246. reject(new Error(res.message || 'Error'))
  247. return {}
  248. }
  249. if (res.message || res.code) {
  250. uni.showToast({
  251. title: res.message || 'Error',
  252. icon: 'none',
  253. duration: 1500
  254. })
  255. }
  256. reject(new Error(res.message || 'Error'))
  257. } else {
  258. resolve(res)
  259. }
  260. },
  261. fail: function (err) {
  262. uni.hideLoading()
  263. uni.showModal({
  264. title: '提示',
  265. content: '网络连接失败' + JSON.stringify(err)
  266. })
  267. reject(err)
  268. }
  269. })
  270. })
  271. }
  272. export default {
  273. postJson,
  274. get,
  275. post,
  276. put,
  277. del
  278. }