axios.js 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. import { commonConfig } from '../common/config'
  2. export default {
  3. async post(url, param,yanci=true) {
  4. // if(yanci){
  5. // uni.showLoading({
  6. // title:'加载中'
  7. // })
  8. // setTimeout(()=>{
  9. // uni.hideLoading()
  10. // },3000)
  11. // }
  12. const res = await this.uni_request(url,param,'post')
  13. // if(yanci){
  14. // setTimeout(()=>{
  15. // uni.hideLoading()
  16. // },200)
  17. // }
  18. return res;
  19. },
  20. async get(url, param,yanci=true) {
  21. // if(yanci){
  22. // uni.showLoading({
  23. // title:'加载中'
  24. // })
  25. // setTimeout(()=>{
  26. // uni.hideLoading()
  27. // },3000)
  28. // }
  29. const res = await this.uni_request(url,param,'get')
  30. // if(yanci){
  31. // setTimeout(()=>{
  32. // uni.hideLoading()
  33. // },200)
  34. // }
  35. return res;
  36. },
  37. async put(url, param) {
  38. const res = await this.uni_request(url,param,'put')
  39. return res;
  40. },
  41. async delete(url, param) {
  42. const res = await this.uni_request(url,param,'delete')
  43. return res;
  44. },
  45. uni_request(url,param,method,again_quest=true) {
  46. const that = this
  47. return new Promise((cback, reject) => {
  48. uni.request({
  49. url: commonConfig.baseUrl + url,
  50. data: param,
  51. method:method,
  52. header: {
  53. accessToken:uni.getStorageSync("token")
  54. },
  55. }).then(data => { //data为一个数组,数组第一项为错误信息,第二项为返回数据
  56. var [error, res] = data;
  57. cback(res.data);
  58. var res_code = res.statusCode.toString();
  59. let errCode = res.data?.retHead?.errCode;
  60. if (res_code.charAt(0) == 2) {
  61. if(res_code==200){
  62. // console.log('200',url)
  63. cback(res.data);
  64. }else{
  65. console.log('201',url)
  66. uni.showToast({
  67. title:res.data.retHead.errMsg,
  68. icon:'none'
  69. })
  70. }
  71. };
  72. if(errCode==401||errCode==405){
  73. uni.showToast({
  74. title:res.data.retHead.errMsg,
  75. icon:'none',
  76. duration: 12000,
  77. complete:function(){
  78. window.location.replace(config.loginUrl)
  79. }
  80. })
  81. };
  82. // else{
  83. // if(res_code==401){
  84. // //登录失效
  85. // console.log('401',url)
  86. // if(again_quest){
  87. // // token.getTokenFromServer(()=>{
  88. // // const again_res=that.uni_request(url,param,method,false)
  89. // // //注意这里需要cback,因为是上一个promis的cback
  90. // // cback(again_res);
  91. // // });
  92. // }else{
  93. // console.log('再次登陆仍然失败',url)
  94. // }
  95. // }else{
  96. // console.log('400/500',url,error,res)
  97. // uni.showToast({
  98. // title:res.data.msg?res.data.msg:'请求异常',
  99. // icon:'none'
  100. // })
  101. // }
  102. // };
  103. // console.log('uni_requestdata',data[1].data.retHead);
  104. if(data[1].data.retHead.errCode&&data[1].data.retHead.errCode!='0'&&data[1].data.retHead.errMsg){
  105. uni.showToast({
  106. title:data[1].data.retHead.errMsg,
  107. icon:'none'
  108. });
  109. };
  110. }).catch(err => {
  111. console.log('catch:',err);
  112. })
  113. })
  114. },
  115. }