util.js 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309
  1. const md5 = require('./md5.js');
  2. const accessHeader = {
  3. accessKey: '',
  4. appId: ''
  5. };
  6. // const notWxApiPath = 'https://app.schoolwisdoms.com/schoolbaby/api/';
  7. // const apiPath = 'https://app.schoolwisdoms.com/schoolbaby/api/wx/';
  8. const notWxApiPath = 'https://demo.schoolwisdoms.com/schoolbaby/api/';
  9. const apiPath = 'https://demo.schoolwisdoms.com/schoolbaby/api/wx/';
  10. // const notWxApiPathDemo = 'http://192.168.2.104/schoolbaby/api/';
  11. // const apiPathDemo = 'http://192.168.2.104/schoolbaby/api/wx/';
  12. // const notWxApiPath = 'http://192.168.0.102/schoolbaby/api/'
  13. // const apiPath = 'http://192.168.0.102/schoolbaby/api/wx/'
  14. //经纬度算距离
  15. function distance(la1, lo1, la2, lo2) {
  16. var La1 = la1 * Math.PI / 180.0;
  17. var La2 = la2 * Math.PI / 180.0;
  18. var La3 = La1 - La2;
  19. var Lb3 = lo1 * Math.PI / 180.0 - lo2 * Math.PI / 180.0;
  20. var s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(La3 / 2), 2) + Math.cos(La1) * Math.cos(La2) * Math.pow(Math.sin(Lb3 / 2), 2)));
  21. s = s * 6378.137;
  22. s = Math.round(s * 10000) / 10000;
  23. s = s.toFixed(2);
  24. return s;
  25. }
  26. const formatTime = date => {
  27. const year = date.getFullYear()
  28. const month = date.getMonth() + 1
  29. const day = date.getDate()
  30. const hour = date.getHours()
  31. const minute = date.getMinutes()
  32. const second = date.getSeconds()
  33. return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
  34. }
  35. function curTime() {
  36. const date = new Date()
  37. const year = date.getFullYear()
  38. const month = date.getMonth() + 1
  39. const day = date.getDate()
  40. const hour = date.getHours()
  41. const minute = date.getMinutes()
  42. const second = date.getSeconds()
  43. return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
  44. }
  45. function validDay(val) {
  46. var todayDate = new Date()
  47. var today = todayDate.getFullYear() + '/' + (todayDate.getMonth() + 1) + '/' + todayDate.getDate()
  48. var date = new Date(today);
  49. date.setDate(date.getDate() + val);
  50. var year = date.getFullYear()
  51. var month = date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1
  52. var day = date.getDate() < 10 ? '0' + date.getDate() : date.getDate();
  53. return year + '-' + month + '-' + day;
  54. }
  55. //相隔天数
  56. function getDayBetween(sDate1, sDate2) {
  57. //Date.parse() 解析一个日期时间字符串,并返回1970/1/1 午夜距离该日期时间的毫秒数
  58. var time1 = Date.parse(new Date(sDate1.substring(0, 10)));
  59. var time2 = Date.parse(new Date(sDate2.substring(0, 10)));
  60. var nDays = parseInt((time1 - time2) / 1000 / 3600 / 24);
  61. return nDays;
  62. }
  63. //相隔小时
  64. function validHour(s1, s2) {
  65. s1 = new Date(s1.replace(/-/g, '/'));
  66. s2 = new Date(s2.replace(/-/g, '/'));
  67. var ms = s1.getTime() - s2.getTime();
  68. var hours = (ms / 1000 / 60 / 60).toFixed(1);
  69. return hours;
  70. }
  71. //相隔分钟
  72. function validMinutes(startTime, endTime) {
  73. //定义两个变量time1,time2分别保存开始和结束时间
  74. var time1 = startTime;
  75. var time2 = endTime;
  76. //截取字符串,得到日期部分,用split把字符串分隔成数组
  77. var begin1 = time1.substr(0, 10).split("/");
  78. var end1 = time2.substr(0, 10).split("/");
  79. //将拆分的数组重新组合,并实例成化新的日期对象
  80. var date1 = new Date(begin1[1] + '/' + begin1[2] + '/' + begin1[0]);
  81. var date2 = new Date(end1[1] + '/' + end1[2] + '/' + end1[0]);
  82. //得到两个日期之间的差值m,以分钟为单位
  83. //Math.abs(date2-date1)计算出以毫秒为单位的差值
  84. //Math.abs(date2-date1)/1000得到以秒为单位的差值
  85. //Math.abs(date2-date1)/1000/60得到以分钟为单位的差值
  86. var m = parseInt((date2 - date1) / 1000 / 60);
  87. //小时数和分钟数相加得到总的分钟数
  88. //time1.substr(11,2)截取字符串得到时间的小时数
  89. //parseInt(time1.substr(11,2))*60把小时数转化成为分钟
  90. var min1 = parseInt(time1.substr(11, 2)) * 60 + parseInt(time1.substr(14, 2));
  91. var min2 = parseInt(time2.substr(11, 2)) * 60 + parseInt(time2.substr(14, 2));
  92. //两个分钟数相减得到时间部分的差值,以分钟为单位
  93. var n = min1 - min2;
  94. //将日期和时间两个部分计算出来的差值相加,即得到两个时间相减后的分钟数
  95. var minutes = m + n;
  96. return minutes
  97. }
  98. const formatNumber = n => {
  99. n = n.toString()
  100. return n[1] ? n : '0' + n
  101. }
  102. function getAccessKey(ticket) {
  103. return md5.md5(accessHeader.accessKey + '@' + ticket)
  104. }
  105. function getHeaders() {
  106. // console.log('accessHeader : ' + JSON.stringify(accessHeader));
  107. let ticket = new Date().getTime();
  108. // 将key作为密钥,根据accessKey 生成 加密的 accessKey(暂未实现)
  109. return {
  110. 'Access-Ticket': ticket,
  111. 'Access-Key': getAccessKey(ticket),
  112. 'Access-AppId': accessHeader.appId
  113. }
  114. }
  115. function setAccessHeader(accessKey, appId) {
  116. accessHeader.appId = appId;
  117. accessHeader.accessKey = accessKey;
  118. }
  119. function doPost(url, params) {
  120. return new Promise((resolve, reject) => {
  121. let headers = getHeaders();
  122. headers['Content-Type'] = 'application/x-www-form-urlencoded';
  123. wx.request({
  124. url: apiPath + url,
  125. header: headers,
  126. data: params,
  127. method: 'POST',
  128. success: res => {
  129. if (res.success > 1 || typeof res.version != undefined) {
  130. resolve(res.data)
  131. } else {
  132. wx.hideLoading({
  133. success: (res) => {
  134. wx.showToast({
  135. title: '加载失败,请重试',
  136. icon: 'none'
  137. })
  138. },
  139. })
  140. }
  141. },
  142. faild: res => {
  143. // reject(res)
  144. wx.hideLoading({
  145. success: (res) => {
  146. wx.showToast({
  147. title: res.errMsg,
  148. })
  149. },
  150. })
  151. }
  152. })
  153. }).catch(err => {
  154. console.log(err)
  155. })
  156. }
  157. function notWxPost(url, params) {
  158. return new Promise((resolve, reject) => {
  159. let headers = getHeaders();
  160. headers['Content-Type'] = 'application/x-www-form-urlencoded';
  161. wx.request({
  162. url: notWxApiPath + url,
  163. header: headers,
  164. data: params,
  165. method: 'POST',
  166. success: res => {
  167. if (res.success > 1 || typeof res.version != undefined) {
  168. resolve(res.data)
  169. } else {
  170. wx.hideLoading({
  171. success: (res) => {
  172. wx.showToast({
  173. title: '加载失败,请重试',
  174. icon: 'none'
  175. })
  176. },
  177. })
  178. }
  179. },
  180. faild: res => {
  181. // reject(res)
  182. wx.hideLoading({
  183. success: (res) => {
  184. wx.showToast({
  185. title: res.errMsg,
  186. })
  187. },
  188. })
  189. }
  190. })
  191. }).catch(err => {
  192. console.log(err)
  193. })
  194. }
  195. function doPostDemo(url, params) {
  196. return new Promise((resolve, reject) => {
  197. let headers = getHeaders();
  198. headers['Content-Type'] = 'application/x-www-form-urlencoded';
  199. wx.request({
  200. url: apiPathDemo + url,
  201. header: headers,
  202. data: params,
  203. method: 'POST',
  204. success: res => {
  205. if (res.success > 1 || typeof res.version != undefined) {
  206. resolve(res.data)
  207. } else {
  208. wx.hideLoading({
  209. success: (res) => {
  210. wx.showToast({
  211. title: '加载失败,请重试',
  212. icon: 'none'
  213. })
  214. },
  215. })
  216. }
  217. },
  218. faild: res => {
  219. // reject(res)
  220. wx.hideLoading({
  221. success: (res) => {
  222. wx.showToast({
  223. title: res.errMsg,
  224. })
  225. },
  226. })
  227. }
  228. })
  229. }).catch(err => {
  230. console.log(err)
  231. })
  232. }
  233. function notWxPostDemo(url, params) {
  234. return new Promise((resolve, reject) => {
  235. let headers = getHeaders();
  236. headers['Content-Type'] = 'application/x-www-form-urlencoded';
  237. wx.request({
  238. url: notWxApiPathDemo + url,
  239. header: headers,
  240. data: params,
  241. method: 'POST',
  242. success: res => {
  243. if (res.success > 1 || typeof res.version != undefined) {
  244. resolve(res.data)
  245. } else {
  246. wx.hideLoading({
  247. success: (res) => {
  248. wx.showToast({
  249. title: '加载失败,请重试',
  250. icon: 'none'
  251. })
  252. },
  253. })
  254. }
  255. },
  256. faild: res => {
  257. // reject(res)
  258. wx.hideLoading({
  259. success: (res) => {
  260. wx.showToast({
  261. title: res.errMsg,
  262. })
  263. },
  264. })
  265. }
  266. })
  267. }).catch(err => {
  268. console.log(err)
  269. })
  270. }
  271. module.exports = {
  272. formatTime: formatTime,
  273. doPost: doPost,
  274. notWxPost: notWxPost,
  275. doPostDemo: doPostDemo,
  276. notWxPostDemo: notWxPostDemo,
  277. validDay: validDay,
  278. validMinutes: validMinutes,
  279. getDayBetween: getDayBetween,
  280. validHour: validHour,
  281. curTime: curTime,
  282. setAccessHeader: setAccessHeader,
  283. distance:distance
  284. }