common.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  1. /**
  2. * 通用函数
  3. */
  4. var config = require('./config.js');
  5. var fun_aes = require('./aes.js');
  6. const app = getApp();
  7. /**
  8. * 时间戳转为 xxxx-xx-xx xx:xx:xx 格式
  9. */
  10. function formatTime(time) {
  11. var dateTime = new Date(time * 1000);
  12. var year = dateTime.getFullYear();
  13. var month = dateTime.getMonth() + 1;
  14. var date = dateTime.getDate();
  15. var hour = dateTime.getHours();
  16. var minute = dateTime.getMinutes();
  17. var second = dateTime.getSeconds();
  18. abc();
  19. return year + '-' + month + '-' + date + ' ' + hour + ':' + minute + ':' + second;
  20. }
  21. // 时间格式化
  22. function DateFormat(date, fmt) {
  23. var o = {
  24. 'M+': date.getMonth() + 1,
  25. 'd+': date.getDate(),
  26. 'H+': date.getHours(),
  27. 'm+': date.getMinutes(),
  28. 's+': date.getSeconds(),
  29. 'S+': date.getMilliseconds()
  30. };
  31. if (/(y+)/.test(fmt)) {
  32. fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length));
  33. }
  34. for (var k in o) {
  35. if (new RegExp('(' + k + ')').test(fmt)) {
  36. fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? o[k] : ('00' + o[k]).substr(String(o[k]).length));
  37. }
  38. }
  39. return fmt;
  40. }
  41. function formatDateTime(time) {
  42. var dateTime = new Date(time);
  43. var year = dateTime.getFullYear();
  44. var month = ('00' + (dateTime.getMonth() + 1)).substr(String(dateTime.getMonth() + 1).length);
  45. var date = ('00' + dateTime.getDate()).substr(String(dateTime.getDate()).length);
  46. var hour = ('00' + dateTime.getHours()).substr(String(dateTime.getHours()).length);
  47. var minute = ('00' + dateTime.getMinutes()).substr(String(dateTime.getMinutes()).length);
  48. var second = ('00' + dateTime.getSeconds()).substr(String(dateTime.getSeconds()).length);
  49. return year + '-' + month + '-' + date + ' ' + hour + ':' + minute + ':' + second;
  50. }
  51. /**
  52. * 格式化秒
  53. * @param int value 总秒数
  54. * @return string result 格式化后的字符串
  55. */
  56. function formatSeconds(value, tail = true) {
  57. var theTime = parseInt(value); // 需要转换的时间秒
  58. var theTime1 = 0; // 分
  59. var theTime2 = 0; // 小时
  60. var theTime3 = 0; // 天
  61. if (theTime === 0) {
  62. return parseInt(theTime) + '秒';
  63. }
  64. if (theTime > 60) {
  65. theTime1 = parseInt(theTime / 60);
  66. theTime = parseInt(theTime % 60);
  67. if (theTime1 > 60) {
  68. theTime2 = parseInt(theTime1 / 60);
  69. theTime1 = parseInt(theTime1 % 60);
  70. if (theTime2 > 24) {
  71. //大于24小时
  72. theTime3 = parseInt(theTime2 / 24);
  73. theTime2 = parseInt(theTime2 % 24);
  74. }
  75. }
  76. }
  77. var result = '';
  78. if (theTime > 0) {
  79. result = '' + parseInt(theTime) + '秒';
  80. }
  81. if (theTime1 > 0) {
  82. result = '' + parseInt(theTime1) + '分' + (tail ? result : '');
  83. }
  84. if (theTime2 > 0) {
  85. result = '' + parseInt(theTime2) + '小时' + (tail ? result : '');
  86. }
  87. if (theTime3 > 0) {
  88. result = '' + parseInt(theTime3) + '天' + (tail ? result : '');
  89. }
  90. return result;
  91. }
  92. function getFlatternDistance(lon1, lat1, lon2, lat2) {
  93. var DEF_PI = 3.14159265359; // PI
  94. var DEF_2PI = 6.28318530712; // 2*PI
  95. var DEF_PI180 = 0.01745329252; // PI/180.0
  96. var DEF_R = 6370693.5; // radius of earth
  97. var ew1;
  98. var ns1;
  99. var ew2;
  100. var ns2;
  101. var dx;
  102. var dy;
  103. var dew;
  104. var distance; // 角度转换为弧度
  105. ew1 = lon1 * DEF_PI180;
  106. ns1 = lat1 * DEF_PI180;
  107. ew2 = lon2 * DEF_PI180;
  108. ns2 = lat2 * DEF_PI180;
  109. // 经度差
  110. dew = ew1 - ew2; // 若跨东经和西经180 度,进行调整
  111. if (dew > DEF_PI) dew = DEF_2PI - dew;
  112. else if (dew < -DEF_PI) {
  113. dew = DEF_2PI + dew;
  114. }
  115. dx = DEF_R * Math.cos(ns1) * dew; // 东西方向长度(在纬度圈上的投影长度)
  116. dy = DEF_R * (ns1 - ns2); // 南北方向长度(在经度圈上的投影长度)
  117. // 勾股定理求斜边长
  118. distance = Math.sqrt(dx * dx + dy * dy).toFixed(0);
  119. return distance;
  120. }
  121. /**
  122. * js简单对象转为url查询字符串key=value&
  123. */
  124. function obj2UrlQuery(obj) {
  125. var urlQurey = '';
  126. for (var key in obj) {
  127. urlQurey += key + '=' + obj[key] + '&';
  128. }
  129. if (urlQurey != '') {
  130. urlQurey = urlQurey.substring(0, urlQurey.length - 1);
  131. }
  132. return urlQurey;
  133. }
  134. function getQueryObject(url) {
  135. url = url == null ? window.location.href : url;
  136. const search = url.substring(url.lastIndexOf('?') + 1);
  137. const obj = {};
  138. const reg = /([^?&=]+)=([^?&=]*)/g;
  139. search.replace(reg, (rs, $1, $2) => {
  140. const name = decodeURIComponent($1);
  141. let val = decodeURIComponent($2);
  142. val = String(val);
  143. obj[name] = val;
  144. return rs;
  145. });
  146. return obj;
  147. }
  148. /**
  149. * 去掉 undefined/null, 返回默认值
  150. */
  151. function getDefaultValue(value, default_value) {
  152. if (value === undefined || value === null) {
  153. return default_value || '';
  154. }
  155. return value;
  156. }
  157. /**
  158. * 判断为空: undefined/null/空字符
  159. * 为空返回 true, 否则返回false
  160. */
  161. function isEmpty(value) {
  162. if (value === undefined || value === null || value === '' || value.trim() === '') {
  163. return true;
  164. }
  165. return false;
  166. }
  167. function alert(title, content, successCallBack) {
  168. uni.showModal({
  169. title: title || '',
  170. content: content || '',
  171. showCancel: false,
  172. success: successCallBack
  173. });
  174. }
  175. function loading() {
  176. uni.showLoading({
  177. title: '正在加载数据 ...',
  178. mask: true
  179. });
  180. }
  181. /**
  182. * 成功提示
  183. */
  184. function successToast(title, duration) {
  185. uni.showToast({
  186. title: title || '成功',
  187. icon: 'success',
  188. duration: duration || 1500,
  189. mask: true
  190. });
  191. }
  192. /**
  193. * 简单提示
  194. */
  195. function simpleToast(title, duration) {
  196. uni.showToast({
  197. title: title || '成功',
  198. icon: 'none',
  199. duration: duration || 1500
  200. });
  201. }
  202. /**
  203. * 手机号验证 简单匹配
  204. */
  205. function isPhone(phone) {
  206. return phone.match(/^1[0-9]{10}$/) != null;
  207. }
  208. /**
  209. * 检验字符串是否是纯数值 正数 小数
  210. */
  211. function isDigital(num) {
  212. //return num.match(/^[1-9]?\d+[.]?\d+$/) != null;
  213. return num.match(/^[0-9]?\d+[.]?\d+$/) != null;
  214. }
  215. /**
  216. * 选择并上传图片
  217. */
  218. function uploadImg(callback) {
  219. uni.chooseImage({
  220. count: 1,
  221. success: function (res) {
  222. var tempFilePaths = res.tempFilePaths;
  223. uni.uploadFile({
  224. url: config.API_UP_IMG_URL,
  225. filePath: tempFilePaths[0],
  226. name: 'imgFile',
  227. success: function (res1) {
  228. var rtDataObj = JSON.parse(res1.data);
  229. if (rtDataObj.code == 200) {
  230. callback(rtDataObj.data[0].url);
  231. } else {
  232. uni.showModal({
  233. title: '错误',
  234. content: '上传图片错误[' + rtDataObj.message + ']'
  235. });
  236. }
  237. }
  238. });
  239. }
  240. });
  241. }
  242. /**
  243. * 选择并上传图片 七牛存储
  244. */
  245. function upLoadImgQiNiu(callback) {
  246. const http = require('./http.js');
  247. uni.chooseImage({
  248. count: 1,
  249. success: function (res) {
  250. const tempFilePaths = res.tempFilePaths;
  251. loading();
  252. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, function (response) {
  253. if (response.data.code === 200) {
  254. const token = response.data.data.token;
  255. uni.uploadFile({
  256. url: config.QINIU_UPLOAD_SITE,
  257. filePath: tempFilePaths[0],
  258. name: 'file',
  259. formData: {
  260. token: token
  261. },
  262. success: function (res1) {
  263. uni.hideLoading();
  264. var rtDataObj = JSON.parse(res1.data);
  265. const key = rtDataObj.key;
  266. callback(config.QINIU_SITE + key);
  267. },
  268. fail: function (res) {
  269. simpleToast('上传失败');
  270. uni.hideLoading();
  271. }
  272. });
  273. } else {
  274. simpleToast(response.data.msg);
  275. uni.hideLoading();
  276. }
  277. });
  278. }
  279. });
  280. }
  281. /**
  282. * 判断一个元素是否在数组中
  283. */
  284. function inArray(elem, arrayData) {
  285. for (var i = 0; i < arrayData.length; i++) {
  286. if (elem == arrayData[i]) {
  287. return true;
  288. }
  289. }
  290. return false;
  291. }
  292. function compareVersion(v1, v2) {
  293. v1 = v1.split('.');
  294. v2 = v2.split('.');
  295. const len = Math.max(v1.length, v2.length);
  296. while (v1.length < len) {
  297. v1.push('0');
  298. }
  299. while (v2.length < len) {
  300. v2.push('0');
  301. }
  302. for (let i = 0; i < len; i++) {
  303. const num1 = parseInt(v1[i]);
  304. const num2 = parseInt(v2[i]);
  305. if (num1 > num2) {
  306. return 1;
  307. } else if (num1 < num2) {
  308. return -1;
  309. }
  310. }
  311. return 0;
  312. }
  313. function groupListToTreeRecursion(user, userlist, device) {
  314. user.children = [];
  315. user.children_device_cnt = 0;
  316. user.own_device_cnt = parseInt(user.device_sum);
  317. var n = userlist.findIndex((x) => {
  318. return parseInt(x.parent_id) === parseInt(user.id);
  319. });
  320. while (n !== -1) {
  321. var childrenUser = userlist[n];
  322. userlist.splice(n, 1);
  323. childrenUser = groupListToTreeRecursion(childrenUser, userlist, device);
  324. user.children_device_cnt += childrenUser.all_device_cnt;
  325. user.children.push(childrenUser);
  326. n = userlist.findIndex((x) => {
  327. return parseInt(x.parent_id) === parseInt(user.id);
  328. });
  329. }
  330. user.all_device_cnt = user.own_device_cnt + user.children_device_cnt;
  331. user.children_cnt = user.children.length;
  332. user.leaf = user.children_cnt === 0;
  333. return user;
  334. }
  335. // 集团列表转树
  336. function groupListToTree(userlist, id) {
  337. var user = userlist.find((x) => {
  338. return parseInt(x.id) === parseInt(id);
  339. });
  340. if (user === undefined) {
  341. return null;
  342. }
  343. return groupListToTreeRecursion(user, userlist.concat(), null);
  344. }
  345. // 集团树展开
  346. function groupTreeLeaf(groupTree, grouplist = []) {
  347. groupTree.children.forEach((p) => {
  348. grouplist = groupTreeLeaf(p, grouplist);
  349. });
  350. groupTree.children = [];
  351. grouplist.push(groupTree);
  352. return grouplist;
  353. }
  354. // 点是否在多边形内
  355. function isPointInPolygon(point, polygon) {
  356. var N = polygon.length;
  357. var boundOrVertex = true; // 如果点位于多边形的顶点或边上,也算做点在多边形内,直接返回true
  358. var intersectCount = 0; // cross points count of x
  359. var precision = 2e-10; // 浮点类型计算时候与0比较时候的容差
  360. var p1;
  361. var p2; // neighbour bound vertices
  362. var p = point; // 测试点
  363. p1 = polygon[0]; // left vertex
  364. for (var i = 1; i <= N; ++i) {
  365. // check all rays
  366. if (p[0] === p1[0] && p[1] === p1[1]) {
  367. return boundOrVertex; // p is an vertex
  368. }
  369. p2 = polygon[i % N]; // right vertex
  370. if (p[1] < Math.min(p1[1], p2[1]) || p[1] > Math.max(p1[1], p2[1])) {
  371. // ray is outside of our interests
  372. p1 = p2;
  373. continue; // next ray left point
  374. }
  375. if (p[1] > Math.min(p1[1], p2[1]) && p[1] < Math.max(p1[1], p2[1])) {
  376. // ray is crossing over by the algorithm (common part of)
  377. if (p[0] <= Math.max(p1[0], p2[0])) {
  378. // x is before of ray
  379. if (p1[1] === p2[1] && p[0] >= Math.min(p1[0], p2[0])) {
  380. // overlies on a horizontal ray
  381. return boundOrVertex;
  382. }
  383. if (p1[0] === p2[0]) {
  384. // ray is vertical
  385. if (p1[0] === p[0]) {
  386. // overlies on a vertical ray
  387. return boundOrVertex;
  388. } else {
  389. // before ray
  390. ++intersectCount;
  391. }
  392. } else {
  393. // cross point on the left side
  394. var xinters = ((p[1] - p1[1]) * (p2[0] - p1[0])) / (p2[1] - p1[1]) + p1[0]; // cross point of x
  395. if (Math.abs(p[0] - xinters) < precision) {
  396. // overlies on a ray
  397. return boundOrVertex;
  398. }
  399. if (p[0] < xinters) {
  400. // before ray
  401. ++intersectCount;
  402. }
  403. }
  404. }
  405. } else {
  406. // special case when ray is crossing through the vertex
  407. if (p[1] === p2[1] && p[0] <= p2[0]) {
  408. // p crossing over p2
  409. var p3 = polygon[(i + 1) % N]; // next vertex
  410. if (p[1] >= Math.min(p1[1], p3[1]) && p[1] <= Math.max(p1[1], p3[1])) {
  411. // p[1] lies between p1[1] & p3[1]
  412. ++intersectCount;
  413. } else {
  414. intersectCount += 2;
  415. }
  416. }
  417. }
  418. p1 = p2; // next ray left point
  419. }
  420. if (intersectCount % 2 === 0) {
  421. // 偶数在多边形外
  422. return false;
  423. } else {
  424. // 奇数在多边形内
  425. return true;
  426. }
  427. }
  428. // 加密
  429. function aesEncrypt(code, key = [32, 87, 47, 82, 54, 75, 63, 71, 48, 80, 65, 88, 17, 99, 45, 43]) {
  430. //key和code需要使用十进制的数组表示
  431. var that = this;
  432. var o = key; //key的密钥10进制
  433. var t = fun_aes.CryptoJS.enc.int8array.parse(o);
  434. var r = fun_aes.CryptoJS.enc.int8array.parse(code);
  435. var n =
  436. (r.toString(fun_aes.CryptoJS.enc.Base64),
  437. fun_aes.CryptoJS.AES.encrypt(r, t, {
  438. iv: [],
  439. mode: fun_aes.CryptoJS.mode.ECB,
  440. padding: fun_aes.CryptoJS.pad.NoPadding
  441. }));
  442. var w = fun_aes.CryptoJS.enc.int8array.stringify(n.ciphertext);
  443. return w;
  444. }
  445. function neInt2hex(num, len) {
  446. var hex = (num & 65535).toString(16);
  447. if (len) {
  448. while (hex.length < len) hex = '0' + hex;
  449. }
  450. return hex;
  451. }
  452. function aesDecrypt(code, key = [32, 87, 47, 82, 54, 75, 63, 71, 48, 80, 65, 88, 17, 99, 45, 43]) {
  453. var that = this;
  454. var l = code;
  455. var o = key;
  456. var t = fun_aes.CryptoJS.enc.int8array.parse(o);
  457. var r = fun_aes.CryptoJS.enc.int8array.parse(l).toString(fun_aes.CryptoJS.enc.Base64);
  458. var n = fun_aes.CryptoJS.AES.decrypt(r, t, {
  459. iv: [],
  460. mode: fun_aes.CryptoJS.mode.ECB,
  461. padding: fun_aes.CryptoJS.pad.NoPadding
  462. });
  463. n = fun_aes.CryptoJS.enc.int8array.stringify(n);
  464. return n;
  465. }
  466. function completArray(arr, n) {
  467. for (var i = n - arr.length; i > 0; i--) {
  468. arr.push((Math.random() * 255) | 0);
  469. }
  470. return arr;
  471. }
  472. function toArrayBuffer(arr) {
  473. var buffer = new ArrayBuffer(arr.length);
  474. var view = new Int8Array(buffer);
  475. for (var i = 0; i < arr.length; i++) {
  476. view[i] = arr[i];
  477. }
  478. return buffer;
  479. }
  480. function getHexData(data) {
  481. var hexStr = '';
  482. for (var i = 0; data.length > i; i++) {
  483. var hex = data[i].toString(16);
  484. if (hex.length === 1) {
  485. hex = '0' + hex;
  486. }
  487. hexStr = hexStr + hex;
  488. }
  489. return hexStr;
  490. }
  491. function arrayToIntHex(array) {
  492. var total = 0;
  493. for (var i = 0; array.length > i; i++) {
  494. total += array[i];
  495. }
  496. return dec2hex(total, 8);
  497. }
  498. function dec2hex(dec, len) {
  499. //10进制转16进制补0
  500. var hex = '';
  501. while (dec) {
  502. var last = dec & 15;
  503. hex = String.fromCharCode((last > 9 ? 55 : 48) + last) + hex;
  504. dec >>= 4;
  505. }
  506. if (len) {
  507. while (hex.length < len) hex = '0' + hex;
  508. }
  509. return hex;
  510. }
  511. function hexToList(str) {
  512. var val = [];
  513. for (var i = 0; i < str.length / 2; i++) {
  514. val.push(parseInt(str.substring(0 + i * 2, 2 + i * 2), 16));
  515. }
  516. return val;
  517. }
  518. function reportBluetooth(macid, functionList1, functionList2, functionList3, functionList4) {
  519. var functionList_1 = [];
  520. var functionList_2 = [];
  521. var functionList_3 = [];
  522. var functionList_4 = [];
  523. for (var i = 0; functionList1.length > i; i++) {
  524. functionList_1.push(parseInt(functionList1[i]));
  525. }
  526. for (var i = 0; functionList2.length > i; i++) {
  527. functionList_2.push(parseInt(functionList2[i]));
  528. }
  529. for (var i = 0; functionList3.length > i; i++) {
  530. functionList_3.push(parseInt(functionList3[i]));
  531. }
  532. for (var i = 0; functionList4.length > i; i++) {
  533. functionList_4.push(parseInt(functionList4[i]));
  534. }
  535. const http = require('./http.js');
  536. var list = [
  537. {
  538. code: 30,
  539. data: JSON.stringify(functionList_1)
  540. },
  541. {
  542. code: 31,
  543. data: JSON.stringify(functionList_2)
  544. },
  545. {
  546. code: 32,
  547. data: JSON.stringify(functionList_3)
  548. },
  549. {
  550. code: 9,
  551. data: JSON.stringify(functionList_4)
  552. }
  553. ];
  554. const pData = {
  555. macid: macid,
  556. data: JSON.stringify(list)
  557. };
  558. http.postApi(config.API_REPORT_BLUETOOTH, pData, function (response) {
  559. if (response.data.code === 200) {
  560. } else {
  561. }
  562. });
  563. }
  564. var repeatTime = 0;
  565. function reportBms(macid, data, successCallBack) {
  566. var pData = {
  567. macid: macid,
  568. data: getHexData(data)
  569. };
  570. const http = require('./http.js');
  571. var endTime = new Date().getTime();
  572. if (endTime - repeatTime > 3000) {
  573. //防止多条数据重发
  574. repeatTime = endTime;
  575. http.postApi(config.API_REPORT_BMS, pData, function (response) {
  576. if (response.data.code === 200) {
  577. successCallBack(response);
  578. }
  579. });
  580. }
  581. }
  582. function getQVConfig(macid, successCallBack) {
  583. var pData = {
  584. macid: macid
  585. };
  586. const http = require('./http.js');
  587. http.postApi(config.API_QV_CONFIG, pData, function (response) {
  588. if (response.data.code === 200) {
  589. successCallBack(response);
  590. }
  591. });
  592. }
  593. function bluetoothGetCtlData() {
  594. const http = require('./http.js');
  595. // const accountInfo = uni.getAccountInfoSync();
  596. const app = getApp();
  597. http.postApi(
  598. config.API_GET_CTL,
  599. {
  600. appid: "wxddbcc3709026525e"
  601. },
  602. (resp) => {
  603. if (resp.data.code === 200) {
  604. app.globalData.bluetoothConfig = resp.data.data;
  605. }
  606. }
  607. );
  608. }
  609. function completArrayCRC(arr, n = 16) {
  610. if (arr[0] == 8) {
  611. console.log(n);
  612. console.log(n - arr.length);
  613. }
  614. for (var i = n - arr.length; i > 1; i--) {
  615. if (arr[0] == 8) {
  616. }
  617. arr.push(0);
  618. }
  619. arr.push(arr.reduce((p, c) => p + c) % 256);
  620. if (arr[0] == 8) {
  621. console.log(arr);
  622. }
  623. return arr;
  624. }
  625. function bluetoothBaud(device, bluetooth, successCallBack) {
  626. const http = require('./http.js');
  627. //const accountInfo = uni.getAccountInfoSync();
  628. const pData = {
  629. macid: device.mac_id,
  630. appid: "wxddbcc3709026525e"
  631. };
  632. if (device.bt_type === 'ZXBTS') {
  633. http.postApi(config.API_GET_BPS, pData, (resp) => {
  634. if (resp.data.code === 200) {
  635. var baudList = [4800, 9600, 14400, 38400, 56000, 57600, 115200];
  636. for (var i = 0; baudList.length > i; i++) {
  637. if (resp.data.data.bps === baudList[i]) {
  638. successCallBack(i);
  639. }
  640. }
  641. bluetooth.queryBaud(
  642. device.mac_id,
  643. (res) => {},
  644. (res) => {}
  645. );
  646. }
  647. });
  648. }
  649. }
  650. function bluetoothSetBaud(device, bleBaud, baud, bluetooth) {
  651. if (bleBaud != baud) {
  652. bluetooth.setBaud(
  653. device.mac_id,
  654. baud,
  655. (res) => {
  656. console.log('设置波特率成功');
  657. console.log(res);
  658. setTimeout(function () {
  659. bluetooth.stateUpdate(
  660. device.mac_id,
  661. (res) => {},
  662. (res) => {}
  663. );
  664. }, 500);
  665. },
  666. (res) => {}
  667. );
  668. }
  669. }
  670. module.exports = {
  671. formatTime: formatTime,
  672. formatDateTime: formatDateTime,
  673. formatSeconds: formatSeconds,
  674. obj2UrlQuery: obj2UrlQuery,
  675. getQueryObject: getQueryObject,
  676. getDefaultValue: getDefaultValue,
  677. isEmpty: isEmpty,
  678. alert: alert,
  679. isPhone: isPhone,
  680. loading: loading,
  681. successToast: successToast,
  682. simpleToast: simpleToast,
  683. isDigital: isDigital,
  684. uploadImg: uploadImg,
  685. upLoadImgQiNiu: upLoadImgQiNiu,
  686. inArray: inArray,
  687. compareVersion: compareVersion,
  688. groupListToTree: groupListToTree,
  689. isPointInPolygon: isPointInPolygon,
  690. DateFormat: DateFormat,
  691. groupTreeLeaf: groupTreeLeaf,
  692. aesEncrypt: aesEncrypt,
  693. aesDecrypt: aesDecrypt,
  694. arrayToIntHex: arrayToIntHex,
  695. dec2hex: dec2hex,
  696. hexToList: hexToList,
  697. completArray: completArray,
  698. toArrayBuffer: toArrayBuffer,
  699. getFlatternDistance: getFlatternDistance,
  700. bluetoothGetCtlData: bluetoothGetCtlData,
  701. reportBluetooth: reportBluetooth,
  702. completArrayCRC: completArrayCRC,
  703. reportBms: reportBms,
  704. getQVConfig: getQVConfig,
  705. bluetoothBaud: bluetoothBaud,
  706. bluetoothSetBaud: bluetoothSetBaud,
  707. neInt2hex: neInt2hex
  708. };