http.js 2.5 KB

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