request.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. // const baseUrl =  'http://81.70.84.72:30046'
  2. // const baseUrl =  'http://172.18.0.24:30046'
  3. const baseUrl =  'http://39.100.230.190:30046'
  4. // 文件上传地址
  5. const fileUrl =  'http://39.100.230.190:30045'
  6. // import { showLoading,hideLoading } from './loading.js'
  7. // 方式请求
  8. export function request(method, url, data = {},header={},token=false) {
  9. return new Promise((resolve, reject) => {
  10. // header['content-type']='application/x-www-form-urlencoded;charset=UTF-8'
  11. const t = uni.getStorageSync('token')
  12. if(t){
  13. // header['Authorization']='Bearer '+ t
  14. header['Authorization']= t
  15. } else {
  16. header['Authorization']= 'kH9Hjdl/kDju1I678v+35Wbf5u0HrveaZsxbhtW8xK8='
  17. }
  18. uni.showLoading()
  19. uni.request({
  20. url: baseUrl + url,
  21. method: method.toUpperCase(),
  22. data: data,
  23. dataType: 'json',
  24. header,
  25. success: (res) => {
  26. if(res.data.status === '40401' || res.data.status === '40415' || res.data.status === '50000') {
  27. uni.showToast({
  28. title: res.data.message,
  29. duration: 2000,
  30. icon: 'none',
  31. position: 'top'
  32. });
  33. } else {
  34. resolve(res.data)
  35. }
  36. uni.hideLoading()
  37. },
  38. fail: (error) => {
  39. console.log(error, '错误');
  40. uni.showToast({
  41. title: error.errMsg,
  42. duration: 20000,
  43. icon: 'none',
  44. position: 'top'
  45. });
  46. reject(error)
  47. }
  48. });
  49. })
  50. }
  51. //上传图片
  52. export function upload_img(url, imageSrc) {
  53. return new Promise((resolve, reject) => {
  54. uni.uploadFile({
  55. url: fileUrl + url,
  56. filePath: imageSrc,
  57. name: 'file',
  58. header: {
  59. 'Authorization': uni.getStorageSync('token')
  60. },
  61. success: (res) => {
  62. res = JSON.parse(res.data);
  63. resolve(res);
  64. },
  65. fail: (err) => {
  66. reject(err);
  67. }
  68. });
  69. })
  70. }