request.js 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. console.log(Url);
  34. console.log(url);
  35. uni.request({
  36. // url: Url + '/api/' + url,
  37. url: Url + '/' + url,
  38. method: method || 'GET',
  39. header: header,
  40. data: data || {},
  41. success: (res) => {
  42. if (noVerify)
  43. reslove(res.data, res);
  44. else if (res.data.code == 200)
  45. reslove(res.data, res);
  46. else if ([401, 110003, 110004].indexOf(res.data.code) !== -1) {
  47. toLogin();
  48. reject(res.data);
  49. } else if (res.data.code == 400) {
  50. uni.hideLoading()
  51. uni.showModal({
  52. title: i18n.t(`提示`),
  53. content: res.data.msg,
  54. showCancel: false,
  55. confirmText: i18n.t(`我知道了`)
  56. });
  57. } else
  58. reject(res.data.msg || i18n.t(`系统错误`));
  59. },
  60. fail: (msg) => {
  61. console.log("请求失败_", msg);
  62. console.log("请求失败_url", Url + '/' + url)
  63. let data = {
  64. mag: i18n.t(`请求失败`),
  65. status: 1 //1没网
  66. }
  67. // #ifdef APP-PLUS
  68. reject(data);
  69. // #endif
  70. // #ifndef APP-PLUS
  71. reject(i18n.t(`请求失败`));
  72. // #endif
  73. }
  74. })
  75. });
  76. }
  77. const request = {};
  78. ['options', 'get', 'post', 'put', 'head', 'delete', 'trace', 'connect'].forEach((method) => {
  79. request[method] = (api, data, opt) => baseRequest(api, method, data, opt || {})
  80. });
  81. export default request;