http1123.js 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. var common = require('./common.js');
  2. var storage = require('./storage.js');
  3. var config = require('./config.js');
  4. var helpConfig = require('./help_config.js');
  5. // 检查token是否失效 如失效 清除缓存 提示重新登录
  6. // 402: 解析token出错 403: token格式错误 404: 公共声明中缺少必要字段 405: token验证失败
  7. function _checkTokenValid(res) {
  8. if (
  9. res.data.code === 402 ||
  10. res.data.code === 403 ||
  11. res.data.code === 404 ||
  12. res.data.code === 405 ||
  13. res.data.code === 300 ||
  14. res.data.code === 302 ||
  15. res.data.code === 303 ||
  16. res.data.code === 304 ||
  17. res.data.code === 305 ||
  18. res.data.code === 306
  19. ) {
  20. uni.clearStorageSync();
  21. uni.reLaunch({
  22. url: '/pages/login/login'
  23. });
  24. return false;
  25. }
  26. return true;
  27. }
  28. function getRequest(url, data, successCallBack, failCallBack) {
  29. if (!failCallBack) {
  30. failCallBack = function () {};
  31. }
  32. if (url.indexOf('?') > 0) {
  33. url = url + '&' + common.obj2UrlQuery(data);
  34. } else {
  35. url = '?' + common.obj2UrlQuery(data);
  36. }
  37. uni.request({
  38. url: url + '?token=' + storage.getApiToken(),
  39. method: 'GET',
  40. success: function (res) {
  41. uni.hideLoading();
  42. if (_checkTokenValid(res)) {
  43. successCallBack(res);
  44. }
  45. },
  46. fail: function (res) {
  47. uni.hideLoading();
  48. uni.showModal({
  49. title: '错误',
  50. content: '网络错误',
  51. showCancel: false
  52. });
  53. if (failCallBack) {
  54. failCallBack(res);
  55. }
  56. }
  57. });
  58. }
  59. function getHelpRequest(url, data, successCallBack, failCallBack) {
  60. if (!failCallBack) {
  61. failCallBack = function () {};
  62. }
  63. if (url.indexOf('?') > 0) {
  64. url = url + '&' + common.obj2UrlQuery(data);
  65. } else {
  66. url = '?' + common.obj2UrlQuery(data);
  67. }
  68. uni.request({
  69. url: url + '&token=' + storage.getApiToken(),
  70. method: 'GET',
  71. success: function (res) {
  72. uni.hideLoading();
  73. if (_checkTokenValid(res)) {
  74. successCallBack(res);
  75. }
  76. },
  77. fail: function (res) {
  78. uni.hideLoading();
  79. uni.showModal({
  80. title: '错误',
  81. content: '网络错误',
  82. showCancel: false
  83. });
  84. if (failCallBack) {
  85. failCallBack(res);
  86. }
  87. }
  88. });
  89. }
  90. function postRequest(url, data, successCallBack, failCallBack) {
  91. if (!failCallBack) {
  92. failCallBack = function () {};
  93. }
  94. if (url.indexOf('?') > 0) {
  95. if (storage.getApiToken() != '') {
  96. url = url + '&token=' + storage.getApiToken();
  97. }
  98. } else {
  99. if (storage.getApiToken() != '') {
  100. url = url + '?token=' + storage.getApiToken();
  101. }
  102. }
  103. uni.request({
  104. url: url,
  105. data: data,
  106. header: {
  107. 'content-type': 'application/json',
  108. 'X-Token': storage.getApiToken()
  109. },
  110. method: 'POST',
  111. success: function (res) {
  112. //wx.hideLoading();
  113. if (_checkTokenValid(res)) {
  114. successCallBack(res);
  115. }
  116. },
  117. fail: function (res) {
  118. uni.hideLoading();
  119. failCallBack(res);
  120. }
  121. });
  122. }
  123. function postHelpRequest(url, data, successCallBack, failCallBack) {
  124. if (!failCallBack) {
  125. failCallBack = function () {};
  126. }
  127. if (url.indexOf('?') > 0) {
  128. url = url + '&token=' + storage.getApiToken();
  129. } else {
  130. url = url + '?token=' + storage.getApiToken();
  131. }
  132. uni.request({
  133. url: url,
  134. data: data,
  135. header: {
  136. 'content-type': 'application/json'
  137. },
  138. method: 'POST',
  139. success: function (res) {
  140. //wx.hideLoading();
  141. if (_checkTokenValid(res)) {
  142. successCallBack(res);
  143. }
  144. },
  145. fail: function (res) {
  146. uni.hideLoading();
  147. failCallBack(res);
  148. }
  149. });
  150. }
  151. function getApi(url, data, successCallBack, failCallBack) {
  152. getRequest(url, data, successCallBack, failCallBack);
  153. }
  154. function postApi(url, data, successCallBack, failCallBack) {
  155. postRequest(url, data, successCallBack, failCallBack);
  156. }
  157. function getAppConfig(callback = () => {}) {
  158. console.log('getAppConfig ...');
  159. //const accountInfo = uni.getAccountInfoSync();
  160. const pData = {
  161. appid: "wxddbcc3709026525e",
  162. terminal: 'wx_app'
  163. };
  164. getApi(helpConfig.API_INDEX_APP_CONFIG, pData, function (resp) {
  165. if (resp.data.code === 200) {
  166. const appConfig = resp.data.data.appConfig;
  167. storage.setAppConfig(appConfig);
  168. // wx.setNavigationBarTitle({
  169. // title: appConfig.app_name,
  170. // })
  171. callback(appConfig);
  172. }
  173. });
  174. }
  175. /**
  176. * 上报formid
  177. */
  178. function reportFormId(formId) {
  179. //const accountInfo = uni.getAccountInfoSync();
  180. var postData = {
  181. formId: formId,
  182. appid: "wxddbcc3709026525e"
  183. };
  184. postApi(config.API_FORMID_REPORT, postData, function () {});
  185. }
  186. module.exports = {
  187. getAppConfig: getAppConfig,
  188. getRequest: getRequest,
  189. getHelpRequest: getHelpRequest,
  190. postHelpRequest: postHelpRequest,
  191. postRequest: postRequest,
  192. getApi: getApi,
  193. postApi: postApi,
  194. reportFormId: reportFormId
  195. };