http.js 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. // const ip = 'http://192.168.2.8:8080'; //线下
  2. const ip = 'http://hs-server.aseanbusiness.cn'; //线上
  3. //const ip = 'http://192.168.88.36:8080'; //线下
  4. /**
  5. * 封装的http请求
  6. */
  7. const request = (opt) => {
  8. opt = opt || {};
  9. opt.url = ip + opt.url || '';
  10. opt.data = opt.data || null;
  11. opt.method = opt.method || 'GET';
  12. opt.contentType = opt.contentType || 'application/x-www-form-urlencoded'
  13. opt.header = opt.header || {
  14. "Content-Type": opt.contentType,
  15. "satoken": uni.getStorageSync('token')
  16. };
  17. opt.loading = opt.loading || 'true';
  18. opt.success = opt.success || function() {};
  19. opt.fail = opt.fail || function() {};
  20. if (process.env.NODE_ENV) {
  21. console.log(
  22. "**************************************参数调式***************************************************");
  23. console.log("请求地址:" + opt.url + " 请求参数:" + JSON.stringify(opt.data));
  24. console.log(
  25. "************************************************************************************************");
  26. }
  27. if (opt.loading == 'true') {
  28. uni.showLoading({
  29. title: '正在加载',
  30. mask: true
  31. });
  32. }
  33. uni.request({
  34. url: opt.url,
  35. data: opt.data,
  36. method: opt.method,
  37. header: opt.header,
  38. dataType: 'json',
  39. responseType: opt.responseType,
  40. success: res => {
  41. setTimeout(() => {
  42. uni.hideLoading();
  43. }, 500)
  44. /*******************未授权***************************/
  45. if (res.data.code === 401) {
  46. uni.removeStorageSync('info');
  47. uni.removeStorageSync('token');
  48. uni.redirectTo({url:'/pages/login/login'})
  49. return;
  50. }
  51. /*******************未授权***************************/
  52. if (res.data.code === 403) {
  53. uni.showModal({
  54. content: res.data.msg,
  55. showCancel: false
  56. });
  57. return;
  58. }
  59. /*******************系统内部错误***************************/
  60. if (res.data.code === 500) {
  61. uni.showModal({
  62. content: res.data.msg,
  63. showCancel: false
  64. });
  65. opt.fail(res);
  66. return;
  67. }
  68. opt.success(res);
  69. },
  70. fail: e => {
  71. uni.hideLoading();
  72. uni.getNetworkType({
  73. success: res => {
  74. if (res.networkType == 'none') {
  75. uni.showModal({
  76. content: '当前网络不可用,请检查网络稍后重试',
  77. showCancel: false
  78. });
  79. } else {
  80. uni.showModal({
  81. content: '服务异常,请稍后重试',
  82. showCancel: false
  83. })
  84. }
  85. }
  86. });
  87. }
  88. })
  89. }
  90. module.exports = {
  91. ip,
  92. request
  93. };