request.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2022 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. import {
  11. HTTP_REQUEST_URL,
  12. HEADER,
  13. TOKENNAME
  14. } from '@/config/app';
  15. import {
  16. toLogin,
  17. checkLogin
  18. } from '../libs/login';
  19. import store from '../store';
  20. import i18n from './lang.js';
  21. /**
  22. * 发送请求
  23. */
  24. function baseRequest(url, method, data, {
  25. noAuth = false,
  26. noVerify = false
  27. }) {
  28. let Url = HTTP_REQUEST_URL,
  29. header = HEADER;
  30. if (!noAuth) {
  31. //登录过期自动登录
  32. if (!store.state.app.token && !checkLogin()) {
  33. toLogin();
  34. return Promise.reject({
  35. msg: i18n.t(`未登录`)
  36. });
  37. }
  38. }
  39. if (store.state.app.token) header[TOKENNAME] = 'Bearer ' + store.state.app.token;
  40. return new Promise((reslove, reject) => {
  41. header['Cb-lang'] = uni.getStorageSync('locale') ? uni.getStorageSync('locale') :'zh_cn'
  42. uni.request({
  43. url: Url + '/api/' + url,
  44. method: method || 'GET',
  45. header: header,
  46. data: data || {},
  47. success: (res) => {
  48. if (noVerify)
  49. reslove(res.data, res);
  50. else if (res.data.status == 200)
  51. reslove(res.data, res);
  52. else if ([110002, 110003, 110004].indexOf(res.data.status) !== -1) {
  53. toLogin();
  54. reject(res.data);
  55. } else if (res.data.status == 100103) {
  56. uni.showModal({
  57. title: i18n.t(`提示`),
  58. content: res.data.msg,
  59. showCancel: false,
  60. confirmText: i18n.t(`我知道了`)
  61. });
  62. } else
  63. reject(res.data.msg || i18n.t(`系统错误`));
  64. },
  65. fail: (msg) => {
  66. let data = {
  67. mag: i18n.t(`请求失败`),
  68. status: 1 //1没网
  69. }
  70. // #ifdef APP-PLUS
  71. reject(data);
  72. // #endif
  73. // #ifndef APP-PLUS
  74. reject(i18n.t(`请求失败`));
  75. // #endif
  76. }
  77. })
  78. });
  79. }
  80. const request = {};
  81. ['options', 'get', 'post', 'put', 'head', 'delete', 'trace', 'connect'].forEach((method) => {
  82. request[method] = (api, data, opt) => baseRequest(api, method, data, opt || {})
  83. });
  84. export default request;