request.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. const platform = uni.getSystemInfoSync().platform
  2. var base_url = 'https://hire.hdlkeji.com'
  3. export default {
  4. config: {
  5. baseUrl: base_url,
  6. headers: {
  7. "content-type": "application/json",
  8. "Token": uni.getStorageSync('token') ? uni.getStorageSync('token') : ''
  9. //"content-type": "multipart/form-data",
  10. },
  11. dataType: "json",
  12. responseType: "text"
  13. },
  14. interceptor: {
  15. request: function(_config) {},
  16. response: null
  17. },
  18. request(options) {
  19. // uni.showLoading({
  20. // title: "加载中",
  21. // mask: true,
  22. // });
  23. return new Promise((resolve, reject) => {
  24. let _config = null
  25. options.url = this.config.baseUrl + options.url
  26. // if (uni.getStorageSync('token')) {
  27. // // options.data["Authorization"] = uni.getStorageSync('token')
  28. // options.header["token"] = uni.getStorageSync('token') || ''
  29. // } else {
  30. // console.log('token为空')
  31. // // if (!getCurrentPages().route == "pages/doctor/index") {
  32. // // uni.reLaunch({
  33. // // url: '/pages/doctor/index'
  34. // // })
  35. // // }
  36. // }
  37. // console.log('-------------',this.config.headers)
  38. // options.header = Object.assign(this.config.headers, options.header)
  39. // console.log('=========',options.header)
  40. options.header = {
  41. "content-type": "application/json",
  42. "Token": uni.getStorageSync('token') ? uni.getStorageSync('token') : ''
  43. }
  44. options.fail = (response) => {
  45. uni.showToast({
  46. icon: "none",
  47. title: '网络连接失败,请检查网络'
  48. })
  49. reject(response)
  50. }
  51. options.complete = (response) => {
  52. response.config = _config
  53. if (response.statusCode === 200 || response.statusCode === 201) { //成功
  54. resolve(response.data);
  55. } else {
  56. if (response.statusCode === 404) {
  57. uni.showToast({
  58. icon: "none",
  59. title: '接口不存在'
  60. })
  61. }
  62. if (response.statusCode === 500) {
  63. uni.showToast({
  64. icon: "none",
  65. title: '服务器错误'
  66. })
  67. }
  68. reject(response)
  69. }
  70. }
  71. _config = Object.assign({}, this.config, options)
  72. _config.requestId = new Date().getTime()
  73. if (this.interceptor.request) {
  74. this.interceptor.request(_config)
  75. }
  76. uni.request(_config);
  77. });
  78. },
  79. get(url, data, showtips, options) {
  80. data = data ? data : {};
  81. if (!options) {
  82. options = {}
  83. }
  84. options.url = url
  85. options.data = data
  86. options.header = {}
  87. options.method = 'GET'
  88. options.showtips = showtips
  89. return this.request(options)
  90. },
  91. post(url, data, showtips, options) {
  92. data = data ? data : {};
  93. if (!options) {
  94. options = {}
  95. }
  96. options.url = url
  97. options.data = data
  98. options.header = {}
  99. options.method = 'POST'
  100. options.showtips = showtips
  101. return this.request(options)
  102. },
  103. put(url, data, showtips, options) {
  104. if (!options) {
  105. options = {}
  106. }
  107. options.url = url
  108. options.data = data
  109. options.method = 'PUT'
  110. options.showtips = showtips
  111. return this.request(options)
  112. },
  113. del(url, data, showtips, options) {
  114. if (!options) {
  115. options = {}
  116. }
  117. options.url = url
  118. options.data = data
  119. options.showtips = showtips
  120. options.method = 'DELETE'
  121. return this.request(options)
  122. }
  123. }