request.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. import {
  2. HTTP_REQUEST_URL,
  3. HEADER,
  4. TOKENNAME
  5. } from '@/config/app';
  6. import {
  7. toLogin,
  8. checkLogin
  9. } from '../libs/login';
  10. import store from '../store';
  11. import i18n from './lang.js';
  12. /**
  13. * 发送请求
  14. */
  15. function baseRequest(url, method, data, {
  16. noAuth = false,
  17. noVerify = false
  18. }) {
  19. let Url = HTTP_REQUEST_URL,
  20. header = HEADER;
  21. if (!noAuth) {
  22. //登录过期自动登录
  23. if (!store.state.app.token && !checkLogin()) {
  24. toLogin();
  25. return Promise.reject({
  26. msg: i18n.t(`未登录`)
  27. });
  28. }
  29. }
  30. if (store.state.app.token) header[TOKENNAME] = 'Bearer ' + store.state.app.token;
  31. return new Promise((reslove, reject) => {
  32. header['Cb-lang'] = uni.getStorageSync('locale') ? uni.getStorageSync('locale') :'zh_cn'
  33. uni.request({
  34. url: Url + '/' + url,
  35. method: method || 'GET',
  36. header: header,
  37. data: data || {},
  38. success: (res) => {
  39. if (noVerify)
  40. reslove(res.data, res);
  41. else if (res.data.code == 200)
  42. reslove(res.data, res);
  43. else if ([401, 110003, 110004].indexOf(res.data.code) !== -1) {
  44. toLogin();
  45. reject(res.data);
  46. } else if (res.data.code == 400) {
  47. uni.hideLoading()
  48. uni.showModal({
  49. title: i18n.t(`提示`),
  50. content: res.data.msg,
  51. showCancel: false,
  52. confirmText: i18n.t(`我知道了`)
  53. });
  54. } else
  55. reject(res.data.msg || i18n.t(`系统错误`));
  56. },
  57. fail: (msg) => {
  58. console.log("请求失败_", msg);
  59. console.log("请求失败_url", Url + '/' + url)
  60. let data = {
  61. mag: i18n.t(`请求失败`),
  62. status: 1 //1没网
  63. }
  64. // #ifdef APP-PLUS
  65. reject(data);
  66. // #endif
  67. // #ifndef APP-PLUS
  68. reject(i18n.t(`请求失败`));
  69. // #endif
  70. }
  71. })
  72. });
  73. }
  74. const request = {};
  75. ['options', 'get', 'post', 'put', 'head', 'delete', 'trace', 'connect'].forEach((method) => {
  76. request[method] = (api, data, opt) => baseRequest(api, method, data, opt || {})
  77. });
  78. export default request;