request.js 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. //测试地址
  2. //const baseUrl = 'http://api.dms.66km.com.cn/'
  3. //const baseUrl = 'http://192.168.0.121:20187/'
  4. //const baseUrl = 'http://192.168.0.122:20187/'
  5. //正式
  6. //const baseUrl = 'https://apidms.66km.com/'
  7. //正式地址
  8. import $store from '../store'
  9. const extConfig = uni.getExtConfigSync();
  10. console.log(extConfig)
  11. const baseUrl=extConfig.url+'/'
  12. //const baseUrl='http://192.168.0.124:20187/'
  13. //wx2c6f04c0dcd15984正式 wx33053a645546ec31
  14. //测试地址
  15. //const webUrl = 'http://dms.32che.cn/'
  16. //正式
  17. const webUrl = 'https://webwx.66km.com/'
  18. const http = (url = '', date = {}, type = 'POST', header = {
  19. }) => {
  20. return new Promise((resolve, reject) => {
  21. header={};
  22. //console.log(baseUrl)
  23. console.log($store.state.wxOpenData.loginInfo)
  24. //const wxOpenData = uni.getStorageSync("wxOpenData");
  25. var wxOpenData=$store.state.wxOpenData
  26. if(wxOpenData.loginInfo){
  27. header['token']=wxOpenData.loginInfo.token;
  28. header['uid']=wxOpenData.loginInfo.uid;
  29. }
  30. //console.log($store.state.carInfo)
  31. //header['token']='98A9FED8814B457288166BDF623F33D1';
  32. //header['uid']='39415962-C9D3-466D-A73F-5B5429A8DB2A';
  33. header['Content-Type']='application/x-www-form-urlencoded';
  34. //console.log(header)
  35. uni.request({
  36. method: type,
  37. url: baseUrl + url,
  38. data: date,
  39. header: header,
  40. dataType: 'json',
  41. }).then((response) => {
  42. /* setTimeout(function() {
  43. uni.hideLoading();
  44. }, 200); */
  45. let [error, res] = response;
  46. if(res.data.code==401||res.data.code==403){
  47. // uni.showToast({
  48. // title: res.data.msg,
  49. // icon:'none',
  50. // duration: 3000,
  51. // });
  52. uni.clearStorageSync()
  53. // uni.navigateTo({
  54. // url:'../login/login'
  55. // })
  56. }else if(res.data.code==409){
  57. // getToken(url,date,type,header)
  58. }
  59. if(res.data.code==1){
  60. uni.showToast({
  61. title: res.data.msg,
  62. icon:'none',
  63. duration: 4000,
  64. });
  65. }
  66. resolve(res.data);
  67. }).catch(error => {
  68. let [err, res] = error;
  69. reject(err)
  70. })
  71. });
  72. }
  73. // 请求图片流
  74. const httpBinary = (url = '', date = {}, type = 'POST', header = {
  75. }) => {
  76. return new Promise((resolve, reject) => {
  77. header={};
  78. //const wxOpenData = uni.getStorageSync("wxOpenData");
  79. var wxOpenData=$store.state.wxOpenData
  80. if(wxOpenData){
  81. header['token']=wxOpenData.loginInfo.token;
  82. header['uid']=wxOpenData.loginInfo.uid;
  83. }
  84. //header['token']='98A9FED8814B457288166BDF623F33D1';
  85. //header['uid']='39415962-C9D3-466D-A73F-5B5429A8DB2A';
  86. header['Content-Type']='application/x-www-form-urlencoded';
  87. //console.log(header)
  88. uni.request({
  89. method: type,
  90. url: baseUrl + url,
  91. data: date,
  92. header: header,
  93. dataType: 'json',
  94. responseType: "arraybuffer",
  95. }).then((response) => {
  96. /* setTimeout(function() {
  97. uni.hideLoading();
  98. }, 200); */
  99. let [error, res] = response;
  100. if(res.data.code==401||res.data.code==403){
  101. uni.showToast({
  102. title: res.data.msg,
  103. icon:'none',
  104. duration: 3000,
  105. });
  106. uni.clearStorageSync()
  107. uni.navigateTo({
  108. url:'../login/login'
  109. })
  110. }else if(res.data.code==409){
  111. // getToken(url,date,type,header)
  112. }
  113. resolve(res.data);
  114. }).catch(error => {
  115. uni.hideLoading();
  116. let [err, res] = error;
  117. reject(err)
  118. })
  119. });
  120. }
  121. function getToken(url,date,type,header){
  122. var header={};
  123. //var userId=uni.getStorageSync("devData").userId;
  124. //var devData=uni.getStorageSync("devData")
  125. header['Content-Type']='application/x-www-form-urlencoded';
  126. uni.request({
  127. method: "POST",
  128. url: baseUrl + '/sys/getTokenByUserID',
  129. data: {
  130. userId:userId
  131. },
  132. header: header,
  133. dataType: 'json',
  134. }).then((response) => {
  135. let [error, res] = response;
  136. var accessToken=res.data.data.accessToken.accessToken;
  137. devData.accessToken=accessToken;
  138. uni.setStorage({
  139. key: 'devData',
  140. data:devData,
  141. success: function () {
  142. refresh(url,date,type,header) //刷新接口
  143. }
  144. });
  145. // console.log(accessToken)
  146. }).catch(error => {
  147. })
  148. }
  149. function refresh(url,date,type,header){
  150. uni.request({
  151. method: type,
  152. url: baseUrl + url,
  153. data: date,
  154. header: header,
  155. dataType: 'json',
  156. }).then((response) => {
  157. setTimeout(function() {
  158. uni.hideLoading();
  159. }, 200);
  160. let [error, res] = response;
  161. if(res.data.code==403){
  162. uni.showToast({
  163. title: res.data.msg,
  164. icon:'none',
  165. duration: 3000,
  166. });
  167. uni.navigateTo({
  168. url:'../login/login'
  169. })
  170. }
  171. resolve(res.data);
  172. }).catch(error => {
  173. let [err, res] = error;
  174. reject(err)
  175. })
  176. }
  177. export default {
  178. http,baseUrl,httpBinary,webUrl
  179. }