common.js 22 KB

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