request.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //请求头
  2. import { baseUrl } from '@/https/url.js'
  3. export default(url, method, params) => { // 传参: 接口url, method类型, params参数
  4. const header = {
  5. 'accept':'application/json, text/plain, */*',
  6. 'Content-type': 'application/json',
  7. 'Token':uni.getStorageSync('token')?uni.getStorageSync('token'):"",
  8. }
  9. function getParamet(data){
  10. data = data || {};
  11. if(uni.getStorageSync('chanId')){
  12. if(uni.getStorageSync('chanId')!='lh'){
  13. data.chanId = uni.getStorageSync('chanId')
  14. }
  15. }
  16. return data
  17. }
  18. return new Promise((resolve, reject) => {
  19. uni.request({
  20. method: method,
  21. url: url.indexOf('http') !== -1 ? url : baseUrl + url,
  22. data: method=='GET'?getParamet(params):JSON.stringify(getParamet(params)),
  23. header: header
  24. })
  25. .then((response) => {
  26. console.log('成功的请求')
  27. console.log(url)
  28. // 请求成功后的处理
  29. if(response[1].data.code==401){
  30. uni.removeStorageSync('token');
  31. // uni.showToast({
  32. // title: '登录失效,请刷新界面.',
  33. // duration: 2000,
  34. // icon: 'none'
  35. // });
  36. }
  37. resolve(response[1])
  38. // if(response[1].)
  39. }).catch((reject) => {
  40. // 请求失败后的处理
  41. console.log('失败的请求')
  42. console.log(url)
  43. console.log('请求失败')
  44. reject(reject)
  45. })
  46. })
  47. }