request.js 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //请求头
  2. import { baseUrl } from '@/https/url.js'
  3. export default (url, method, params) => { // 传参: 接口url, method类型, params参数
  4. const header = {
  5. 'accept': 'application/json, text/plain, */*',
  6. 'Content-type': 'application/json',
  7. 'Authorization': uni.getStorageSync('token') ? uni.getStorageSync('token') : "",
  8. }
  9. return new Promise((resolve, reject) => {
  10. uni.request({
  11. method: method,
  12. url: baseUrl + url,
  13. data: method == 'GET' ? params : JSON.stringify(params),
  14. header: header
  15. })
  16. .then((response) => {
  17. // console.log(response);
  18. // 请求成功后的处理
  19. if (response[1].data.code == 201) {
  20. uni.removeStorageSync('token');
  21. uni.showToast({
  22. title: '登录失效,请刷新界面.',
  23. duration: 2000,
  24. icon: 'none'
  25. });
  26. } else if (response[1].data.code == 0) {
  27. if (response[1].data.message == 'token不能为空') {
  28. uni.removeStorageSync('token');
  29. uni.showToast({
  30. title: '登录失效,请刷新界面.',
  31. duration: 2000,
  32. icon: 'none'
  33. });
  34. uni.reLaunch({
  35. url: '/pages/login/login'
  36. });
  37. }
  38. }
  39. resolve(response[1])
  40. // if(response[1].)
  41. }).catch((reject) => {
  42. // 请求失败后的处理
  43. console.log('请求失败')
  44. reject(reject)
  45. })
  46. })
  47. }