index.js 7.8 KB

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