common.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904
  1. /**
  2. * 通用函数
  3. */
  4. var config = require('./config.js');
  5. /**
  6. * 时间戳转为 xxxx-xx-xx xx:xx:xx 格式
  7. */
  8. function formatTime(time) {
  9. if (time == 0) {
  10. return '';
  11. }
  12. var dateTime = new Date(time * 1000);
  13. var year = dateTime.getFullYear();
  14. var month = dateTime.getMonth() + 1;
  15. var date = dateTime.getDate();
  16. var hour = dateTime.getHours();
  17. var minute = dateTime.getMinutes();
  18. var second = dateTime.getSeconds();
  19. return year + '-' + month + '-' + date + ' ' + hour + ':' + minute + ':' + second;
  20. }
  21. /**
  22. * 时间戳转为 xxxx.xx.xx xx:xx 格式
  23. */
  24. function formatMinuteTime(time) {
  25. if (time == 0) {
  26. return '';
  27. }
  28. var dateTime = new Date(time * 1000);
  29. var year = dateTime.getFullYear();
  30. var month = dateTime.getMonth() + 1;
  31. var date = dateTime.getDate();
  32. var hour = dateTime.getHours();
  33. var minute = dateTime.getMinutes();
  34. return year + '.' + month + '.' + date + ' ' + hour + ':' + minute;
  35. }
  36. function getFlatternDistance(lon1, lat1, lon2, lat2) {
  37. var DEF_PI = 3.14159265359; // PI
  38. var DEF_2PI = 6.28318530712; // 2*PI
  39. var DEF_PI180 = 0.01745329252; // PI/180.0
  40. var DEF_R = 6370693.5; // radius of earth
  41. var ew1, ns1, ew2, ns2;
  42. var dx, dy, dew;
  43. var distance; // 角度转换为弧度
  44. ew1 = lon1 * DEF_PI180;
  45. ns1 = lat1 * DEF_PI180;
  46. ew2 = lon2 * DEF_PI180;
  47. ns2 = lat2 * DEF_PI180; // 经度差
  48. dew = ew1 - ew2; // 若跨东经和西经180 度,进行调整
  49. if (dew > DEF_PI) dew = DEF_2PI - dew;
  50. else if (dew < -DEF_PI) dew = DEF_2PI + dew;
  51. dx = DEF_R * Math.cos(ns1) * dew; // 东西方向长度(在纬度圈上的投影长度)
  52. dy = DEF_R * (ns1 - ns2); // 南北方向长度(在经度圈上的投影长度)
  53. // 勾股定理求斜边长
  54. distance = Math.sqrt(dx * dx + dy * dy).toFixed(0);
  55. return distance;
  56. }
  57. function formatDateTime(time) {
  58. var dateTime = new Date(time);
  59. var year = dateTime.getFullYear();
  60. var month = ('00' + (dateTime.getMonth() + 1)).substr(String(dateTime.getMonth() + 1).length);
  61. var date = ('00' + dateTime.getDate()).substr(String(dateTime.getDate()).length);
  62. var hour = ('00' + dateTime.getHours()).substr(String(dateTime.getHours()).length);
  63. var minute = ('00' + dateTime.getMinutes()).substr(String(dateTime.getMinutes()).length);
  64. var second = ('00' + dateTime.getSeconds()).substr(String(dateTime.getSeconds()).length);
  65. return year + '-' + month + '-' + date + ' ' + hour + ':' + minute + ':' + second;
  66. }
  67. /**
  68. * js简单对象转为url查询字符串key=value&
  69. */
  70. function obj2UrlQuery(obj) {
  71. var urlQurey = '';
  72. for (var key in obj) {
  73. urlQurey += key + '=' + obj[key] + '&';
  74. }
  75. if (urlQurey != '') urlQurey = urlQurey.substring(0, urlQurey.length - 1);
  76. return urlQurey;
  77. }
  78. function getQueryObject(url) {
  79. url = url == null ? window.location.href : url;
  80. const search = url.substring(url.lastIndexOf('?') + 1);
  81. const obj = {};
  82. const reg = /([^?&=]+)=([^?&=]*)/g;
  83. search.replace(reg, (rs, $1, $2) => {
  84. const name = decodeURIComponent($1);
  85. let val = decodeURIComponent($2);
  86. val = String(val);
  87. obj[name] = val;
  88. return rs;
  89. });
  90. return obj;
  91. }
  92. /**
  93. * 去掉 undefined/null, 返回默认值
  94. */
  95. function getDefaultValue(value, default_value) {
  96. if (value === undefined || value === null) {
  97. return default_value || '';
  98. }
  99. return value;
  100. }
  101. /**
  102. * 判断为空: undefined/null/空字符
  103. * 为空返回 true, 否则返回false
  104. */
  105. function isEmpty(value) {
  106. if (value === undefined || value === null || value === '' || value.trim() === '') return true;
  107. return false;
  108. } //防止多次点击
  109. function preventMultipleClick() {
  110. const app = getApp();
  111. if (app.globalData.preventClick) {
  112. app.globalData.preventClick = false;
  113. setTimeout(() => {
  114. app.globalData.preventClick = true;
  115. }, 1500);
  116. }
  117. }
  118. function alert(title, content, successCallBack) {
  119. uni.showModal({
  120. title: title || '',
  121. content: content || '',
  122. showCancel: false,
  123. success: successCallBack
  124. });
  125. }
  126. function loading() {
  127. uni.showLoading({
  128. title: '正在加载数据 ...',
  129. mask: true
  130. });
  131. }
  132. /**
  133. * 成功提示
  134. */
  135. function successToast(title, duration) {
  136. uni.showToast({
  137. title: title || '成功',
  138. icon: 'success',
  139. duration: duration || 1500,
  140. mask: true
  141. });
  142. }
  143. /**
  144. * 简单提示
  145. */
  146. function simpleToast(title, duration) {
  147. uni.showToast({
  148. title: title || '成功',
  149. icon: 'none',
  150. duration: duration || 1500
  151. });
  152. }
  153. /**
  154. * 手机号验证 简单匹配
  155. */
  156. function isPhone(phone) {
  157. return phone.match(/^1[0-9]{10}$/) != null;
  158. }
  159. /**
  160. * 检验字符串是否是纯数值 正数 小数
  161. */
  162. function isDigital(num) {
  163. //return num.match(/^[1-9]?\d+[.]?\d+$/) != null;
  164. return num.match(/^[0-9]?\d+[.]?\d+$/) != null;
  165. }
  166. /**
  167. * 选择并上传图片
  168. */
  169. function uploadImg(callback) {
  170. uni.chooseImage({
  171. count: 1,
  172. success: function(res) {
  173. var tempFilePaths = res.tempFilePaths;
  174. uni.uploadFile({
  175. url: config.API_UP_IMG_URL,
  176. filePath: tempFilePaths[0],
  177. //#ifdef MP-ALIPAY
  178. fileType: "image",
  179. //#endif
  180. name: 'imgFile',
  181. success: function(res1) {
  182. var rtDataObj = JSON.parse(res1.data);
  183. if (rtDataObj.code == 200) {
  184. callback(rtDataObj.data[0].url);
  185. } else {
  186. uni.showModal({
  187. title: '错误',
  188. content: '上传图片错误[' + rtDataObj.message + ']'
  189. });
  190. }
  191. }
  192. });
  193. }
  194. });
  195. }
  196. /**
  197. * 选择并上传图片 七牛存储
  198. */
  199. function upLoadImgQiNiu(callback, type = ['album', 'camera']) {
  200. const http = require('./http.js');
  201. uni.chooseImage({
  202. count: 1,
  203. sourceType: type,
  204. success: function(res) {
  205. const tempFilePaths = res.tempFilePaths;
  206. loading();
  207. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, function(response) {
  208. if (response.data.code === 200) {
  209. const token = response.data.data.token;
  210. uni.uploadFile({
  211. url: config.QINIU_UPLOAD_SITE,
  212. filePath: tempFilePaths[0],
  213. //#ifdef MP-ALIPAY
  214. fileType: "image",
  215. //#endif
  216. name: 'file',
  217. formData: {
  218. token: token
  219. },
  220. success: function(res1) {
  221. uni.hideLoading();
  222. var rtDataObj = JSON.parse(res1.data);
  223. const key = rtDataObj.key;
  224. callback(config.QINIU_SITE + key);
  225. },
  226. fail: function(res) {
  227. simpleToast('上传失败');
  228. uni.hideLoading();
  229. }
  230. });
  231. } else {
  232. simpleToast(response.data.msg);
  233. uni.hideLoading();
  234. }
  235. });
  236. }
  237. });
  238. }
  239. function getQVConfig(macid, successCallBack) {
  240. var pData = {
  241. macid: macid
  242. };
  243. const http = require('./http.js');
  244. http.postApi(config.API_QV_CONFIG, pData, function(response) {
  245. if (response.data.code === 200) {
  246. successCallBack(response);
  247. }
  248. });
  249. }
  250. function upLoadImgQiNiu2(callback, filePath) {
  251. const http = require('./http.js');
  252. loading();
  253. http.getApi(config.API_QINIU_UP_IMG_TOKEN, {}, function(response) {
  254. if (response.data.code === 200) {
  255. const token = response.data.data.token;
  256. uni.uploadFile({
  257. url: config.QINIU_UPLOAD_SITE,
  258. filePath: filePath,
  259. name: 'file',
  260. //#ifdef MP-ALIPAY
  261. fileType: "image",
  262. //#endif
  263. formData: {
  264. token: token
  265. },
  266. success: function(res1) {
  267. uni.hideLoading();
  268. var rtDataObj = JSON.parse(res1.data);
  269. const key = rtDataObj.key;
  270. callback(config.QINIU_SITE + key);
  271. },
  272. fail: function(res) {
  273. simpleToast('上传失败');
  274. uni.hideLoading();
  275. }
  276. });
  277. } else {
  278. simpleToast(response.data.msg);
  279. uni.hideLoading();
  280. }
  281. });
  282. }
  283. /**
  284. * 判断一个元素是否在数组中
  285. */
  286. function inArray(elem, arrayData) {
  287. for (var i = 0; i < arrayData.length; i++) {
  288. if (elem == arrayData[i]) {
  289. return true;
  290. }
  291. }
  292. return false;
  293. }
  294. function compareVersion(v1, v2) {
  295. v1 = v1.split('.');
  296. v2 = v2.split('.');
  297. const len = Math.max(v1.length, v2.length);
  298. while (v1.length < len) {
  299. v1.push('0');
  300. }
  301. while (v2.length < len) {
  302. v2.push('0');
  303. }
  304. for (let i = 0; i < len; i++) {
  305. const num1 = parseInt(v1[i]);
  306. const num2 = parseInt(v2[i]);
  307. if (num1 > num2) {
  308. return 1;
  309. } else if (num1 < num2) {
  310. return -1;
  311. }
  312. }
  313. return 0;
  314. }
  315. /**
  316. * 格式化秒
  317. * @param int value 总秒数
  318. * @return string result 格式化后的字符串
  319. */
  320. function formatSeconds(value) {
  321. var theTime = parseInt(value); // 需要转换的时间秒
  322. var theTime1 = 0; // 分
  323. var theTime2 = 0; // 小时
  324. var theTime3 = 0; // 天
  325. if (theTime === 0) return parseInt(theTime) + '秒';
  326. if (theTime > 60) {
  327. theTime1 = parseInt(theTime / 60);
  328. theTime = parseInt(theTime % 60);
  329. if (theTime1 > 60) {
  330. theTime2 = parseInt(theTime1 / 60);
  331. theTime1 = parseInt(theTime1 % 60);
  332. if (theTime2 > 24) {
  333. //大于24小时
  334. theTime3 = parseInt(theTime2 / 24);
  335. theTime2 = parseInt(theTime2 % 24);
  336. }
  337. }
  338. }
  339. var result = '';
  340. if (theTime > 0) {
  341. result = '' + parseInt(theTime) + '秒';
  342. }
  343. if (theTime1 > 0) {
  344. result = '' + parseInt(theTime1) + '分' + result;
  345. }
  346. if (theTime2 > 0) {
  347. result = '' + parseInt(theTime2) + '小时' + result;
  348. }
  349. if (theTime3 > 0) {
  350. result = '' + parseInt(theTime3) + '天' + result;
  351. }
  352. return result;
  353. }
  354. function hueRotate(r, g, b, deg) {
  355. var components = [];
  356. var cosHue = Math.cos((deg * Math.PI) / 180);
  357. var sinHue = Math.sin((deg * Math.PI) / 180);
  358. components[0] = 0.213 + cosHue * 0.787 - sinHue * 0.213;
  359. components[1] = 0.715 - cosHue * 0.715 - sinHue * 0.715;
  360. components[2] = 0.072 - cosHue * 0.072 + sinHue * 0.928;
  361. components[3] = 0.213 - cosHue * 0.213 + sinHue * 0.143;
  362. components[4] = 0.715 + cosHue * 0.285 + sinHue * 0.14;
  363. components[5] = 0.072 - cosHue * 0.072 - sinHue * 0.283;
  364. components[6] = 0.213 - cosHue * 0.213 - sinHue * 0.787;
  365. components[7] = 0.715 - cosHue * 0.715 + sinHue * 0.715;
  366. components[8] = 0.072 + cosHue * 0.928 + sinHue * 0.072;
  367. var red = r * components[0] + g * components[1] + b * components[2];
  368. var green = r * components[3] + g * components[4] + b * components[5];
  369. var blue = r * components[6] + g * components[7] + b * components[8];
  370. return [red, green, blue];
  371. }
  372. function toArrayBuffer(arr) {
  373. var buffer = new ArrayBuffer(arr.length);
  374. var view = new Int8Array(buffer);
  375. for (var i = 0; i < arr.length; i++) {
  376. view[i] = arr[i];
  377. }
  378. return buffer;
  379. }
  380. function completArrayCRC(arr, n = 16) {
  381. for (var i = n - arr.length; i > 1; i--) {
  382. arr.push(0);
  383. }
  384. arr.push(arr.reduce((p, c) => p + c) % 0x100);
  385. return arr;
  386. }
  387. function getRamNumber() {
  388. var result = '';
  389. for (var i = 0; i < 8; i++) {
  390. result += Math.floor(Math.random() * 16).toString(16); //获取0-15并通过toString转16进制
  391. } //默认字母小写,手动转大写
  392. return result.toUpperCase(); //另toLowerCase()转小写
  393. }
  394. function checkVersion() {
  395. // 获取小程序更新机制的兼容,由于更新的功能基础库要1.9.90以上版本才支持,所以此处要做低版本的兼容处理
  396. if (uni.canIUse('getUpdateManager')) {
  397. // wx.getUpdateManager接口,可以获知是否有新版本的小程序、新版本是否下载好以及应用新版本的能力,会返回一个UpdateManager实例
  398. const updateManager = uni.getUpdateManager(); // 检查小程序是否有新版本发布,onCheckForUpdate:当小程序向后台请求完新版本信息,会通知这个版本告知检查结果
  399. updateManager.onCheckForUpdate(function(res) {
  400. // 请求完新版本信息的回调
  401. if (res.hasUpdate) {
  402. // 检测到新版本,需要更新,给出提示
  403. uni.showModal({
  404. title: '更新提示',
  405. content: '检测到新版本,是否下载新版本并重启小程序',
  406. success: function(res) {
  407. if (res.confirm) {
  408. // 用户确定更新小程序,小程序下载和更新静默进行
  409. _this.downLoadAndUpdate(updateManager);
  410. } else if (res.cancel) {
  411. // 若用户点击了取消按钮,二次弹窗,强制更新,如果用户选择取消后不需要进行任何操作,则以下内容可忽略
  412. uni.showModal({
  413. title: '提示',
  414. content: '本次版本更新涉及到新功能的添加,旧版本将无法正常使用',
  415. showCancel: false,
  416. // 隐藏取消按钮
  417. confirmText: '确认更新',
  418. // 只保留更新按钮
  419. success: function(res) {
  420. if (res.confirm) {
  421. // 下载新版本,重启应用
  422. downLoadAndUpdate(updateManager);
  423. }
  424. }
  425. });
  426. }
  427. }
  428. });
  429. }
  430. });
  431. } else {
  432. // 在最新版本客户端上体验小程序
  433. uni.showModal({
  434. title: '提示',
  435. content: '当前微信版本过低,无法使用该功能,请升级到最新微信版本后重试'
  436. });
  437. }
  438. } // 下载小程序最新版本并重启
  439. function downLoadAndUpdate(updateManager) {
  440. uni.showLoading(); // 静默下载更新小程序新版本,onUpdateReady:当新版本下载完成回调
  441. updateManager.onUpdateReady(function() {
  442. uni.hideLoading(); // applyUpdate:强制当前小程序应用上新版本并重启
  443. updateManager.applyUpdate();
  444. }); // onUpdateFailed:当新版本下载失败回调
  445. updateManager.onUpdateFailed(function() {
  446. // 下载新版本失败
  447. uni.showModal({
  448. title: '已有新版本',
  449. content: '新版本已经上线了,请删除当前小程序,重新搜索打开'
  450. });
  451. });
  452. }
  453. function getASCIICode(text) {
  454. var index = 0,
  455. out = new Array(),
  456. show = [];
  457. if (text.length) {
  458. while (index < text.length) {
  459. var character = text.charAt(index),
  460. charCode = text.charCodeAt(index);
  461. if (charCode >= 0xd800 && charCode <= 0xdbff) {
  462. ++index;
  463. out.push(new Array(character + text.charAt(index), charCode.toString(16).toUpperCase() + text
  464. .charCodeAt(index).toString(16).toUpperCase()));
  465. } else {
  466. out.push(new Array(character, charCode.toString(16).toUpperCase()));
  467. }
  468. ++index;
  469. }
  470. for (var x in out) {
  471. var D = parseInt(out[x][1], 16);
  472. if (D > 65535) {
  473. //超出ascii utf16
  474. } else if (D > 127) {
  475. //超出ascii unicode
  476. } //show += out[x][1]
  477. else show.push(D);
  478. }
  479. }
  480. return show;
  481. }
  482. function bluetoothGetCtlData() {
  483. const http = require('./http.js');
  484. const accountInfo = uni.getAccountInfoSync();
  485. const app = getApp();
  486. http.postApi(
  487. config.API_GET_CTL, {
  488. appid: accountInfo.miniProgram.appId
  489. },
  490. (resp) => {
  491. if (resp.data.code === 200) {
  492. app.globalData.bluetoothConfig = resp.data.data;
  493. }
  494. }
  495. );
  496. }
  497. function getHexData(data) {
  498. var hexStr = '';
  499. for (var i = 0; data.length > i; i++) {
  500. var hex = data[i].toString(16);
  501. if (hex.length === 1) {
  502. hex = '0' + hex;
  503. }
  504. hexStr = hexStr + hex;
  505. }
  506. return hexStr;
  507. }
  508. var repeatTime = 0;
  509. function reportBms(macid, data, successCallBack) {
  510. var pData = {
  511. macid: macid,
  512. data: getHexData(data)
  513. };
  514. const http = require('./http.js');
  515. var endTime = new Date().getTime();
  516. if (endTime - repeatTime > 3000) {
  517. //防止多条数据重发
  518. repeatTime = endTime;
  519. http.postApi(config.API_REPORT_BMS, pData, function(response) {
  520. if (response.data.code === 200) {
  521. successCallBack(response);
  522. }
  523. });
  524. }
  525. }
  526. function reportLog(type, dev_id, data) {
  527. var pData = {
  528. dev_id: dev_id,
  529. origin: type,
  530. data: data
  531. };
  532. const http = require('./http.js');
  533. http.postApi(config.API_CABINET_BLUETOOTH_LOG, pData, function(response) {});
  534. }
  535. function maskPhoneNumber(phoneNumber) {
  536. // 确保输入的是字符串
  537. phoneNumber = phoneNumber.toString();
  538. // 使用正则表达式替换手机号中间的数字为 *
  539. var maskedPhoneNumber = phoneNumber.replace(/(\d{3})\d+(\d{4})/, "$1****$2");
  540. return maskedPhoneNumber;
  541. }
  542. function formatDistance(distanceMeters) {
  543. if(!distanceMeters) return''
  544. // 判断距离是否超过1000米
  545. if (distanceMeters >= 1000) {
  546. // 如果超过1000米,则转换为千米并返回
  547. return (distanceMeters / 1000).toFixed(2) + 'km';
  548. } else {
  549. // 否则直接返回米
  550. return distanceMeters.toFixed(0) + 'm';
  551. }
  552. }
  553. function formatWeight(weightMeters) {
  554. if(!weightMeters) return''
  555. if (weightMeters >= 1000) {
  556. return (weightMeters / 1000).toFixed(2) + 'kg';
  557. } else {
  558. return weightMeters.toFixed(0) + 'g';
  559. }
  560. }
  561. function loadAugmentTime(duration_unit, time, select_hire_duration) {
  562. // (周期单位,开始时间, 周期)
  563. var now = new Date(time);
  564. switch (duration_unit - 0) {
  565. case 1: //日
  566. now = new Date(now.getTime() + select_hire_duration * 24 * 60 * 60 * 1000);
  567. break;
  568. case 2:
  569. now.setMonth(now.getMonth() + select_hire_duration);
  570. break;
  571. case 3:
  572. now.setFullYear(now.getFullYear() + select_hire_duration);
  573. break;
  574. case 4: //时
  575. var cycle_time = select_hire_duration / 24;
  576. now = new Date(now.getTime() + cycle_time * 24 * 60 * 60 * 1000);
  577. break;
  578. case 5:
  579. var cycle_time = select_hire_duration;
  580. now = new Date(now.getTime() + cycle_time * 60 * 1000);
  581. break;
  582. case 6: //周
  583. var cycle_time = select_hire_duration * 7;
  584. now = new Date(now.getTime() + cycle_time * 24 * 60 * 60 * 1000);
  585. break;
  586. }
  587. return parseInt(now.getTime() / 1000);
  588. }
  589. function isObjectEmpty(obj) {
  590. for (var key in obj) {
  591. if (obj.hasOwnProperty(key))
  592. return false;
  593. }
  594. return true;
  595. }
  596. function formatDate(dateStr) { // yyyy-mm-dd转换mm月dd日
  597. const date = new Date(dateStr);
  598. const month = String(date.getMonth() + 1).padStart(2, '0'); // 月份从0开始,所以加1
  599. const day = String(date.getDate()).padStart(2, '0'); // 日期不足两位时前面补0
  600. return `${month}月${day}日`;
  601. }
  602. function formatTimeDate(datetime) { // 时间戳格式化 返回x月x日 x:x
  603. if (datetime == 0) {
  604. return '';
  605. }
  606. var date = new Date(datetime * 1000);
  607. var month = String(date.getMonth() + 1).padStart(2, '0')
  608. var day = String(date.getDate()).padStart(2, '0')
  609. var hour = String(date.getHours()).padStart(2, '0')
  610. var minute = String(date.getMinutes()).padStart(2, '0')
  611. return month + '月' + day + '日 ' + ' ' + hour + ':' + minute;
  612. }
  613. function getToDay(type) { //转化为yyyy-mm-dd
  614. if(type === 1){
  615. const now = new Date();
  616. const year = now.getFullYear();
  617. const month = String(now.getMonth() + 1).padStart(2, '0');
  618. const day = String(now.getDate()-0+1).padStart(2, '0');
  619. const formattedDate = `${year}-${month}-${day}`;
  620. return formattedDate;
  621. }else{
  622. const now = new Date();
  623. const year = now.getFullYear();
  624. const month = String(now.getMonth() + 1).padStart(2, '0');
  625. const day = String(now.getDate()).padStart(2, '0');
  626. const formattedDate = `${year}-${month}-${day}`;
  627. return formattedDate;
  628. }
  629. }
  630. function getTimeToDay(time) { //转化为天时分
  631. if (time > 0) {
  632. var day = Math.floor(time / (60 * 24))
  633. var hour = Math.floor((time - day * (60 * 24)) / 60)
  634. var Minute = Math.floor(time - (hour * 60) - day * (60 * 24))
  635. var timeToDay = {
  636. day: day,
  637. hour: hour,
  638. minute: Minute,
  639. }
  640. } else {
  641. timeToDay = ''
  642. }
  643. return timeToDay
  644. }
  645. //判断当前时间是否在时间段内 店铺是否营业
  646. function isWithinTimeRange(startTime, endTime) {
  647. // 获取当前时间
  648. const now = new Date();
  649. const currentMinutes = now.getHours() * 60 + now.getMinutes();
  650. // 将传入的时间转换为分钟
  651. const [startHour, startMinute] = startTime.split(':').map(Number);
  652. const [endHour, endMinute] = endTime.split(':').map(Number);
  653. const startMinutes = startHour * 60 + startMinute;
  654. const endMinutes = endHour * 60 + endMinute;
  655. // 判断当前时间是否在指定范围内
  656. return currentMinutes >= startMinutes && currentMinutes <= endMinutes;
  657. }
  658. // 时间戳格式化 x:x:x -> x:x
  659. var formatToHHMM = function (timeStr) {
  660. var data=timeStr.split(':')
  661. var hours = data[0];
  662. var minutes = data[1];
  663. return hours+':'+minutes;
  664. }
  665. // 时间戳格式化 x:x:x -> x:x
  666. var hideProvinceAndCity = function (address) {
  667. var regex = /(?:[\u4e00-\u9fa5]+省|[\u4e00-\u9fa5]+市|[\u4e00-\u9fa5]+自治区|[\u4e00-\u9fa5]+特别行政区)/g;
  668. return address.replace(regex, '').replace(/\s+/g, '').trim();
  669. }
  670. function calculateRemainingTime(serverTimestamp) {
  671. const currentTimestamp = getCurrentTimestamp();
  672. const remainingTime = serverTimestamp - currentTimestamp;
  673. return remainingTime > 0 ? remainingTime : 0;
  674. }
  675. function formatTimeScan(seconds) {
  676. const hours = Math.floor(seconds / 3600);
  677. const minutes = Math.floor((seconds % 3600) / 60);
  678. const secs = seconds % 60;
  679. var timeStr = ""
  680. return {
  681. hours: String(hours).padStart(2, '0'),
  682. minutes: String(minutes).padStart(2, '0'),
  683. secs: String(secs).padStart(2, '0')
  684. }
  685. }
  686. function getFormattedTime(time) {
  687. // 获取当前时间
  688. const now = time? time : new Date();
  689. // 加上30分钟
  690. now.setMinutes(now.getMinutes() + 30);
  691. // 格式化时间
  692. const month = String(now.getMonth() + 1).padStart(2, "0"); // 月份从0开始,需要加1
  693. const day = String(now.getDate()).padStart(2, "0"); // 日期
  694. const hours = String(now.getHours()).padStart(2, "0"); // 小时
  695. const minutes = String(now.getMinutes()).padStart(2, "0"); // 分钟
  696. // 拼接成目标格式
  697. return `${month}-${day} ${hours}:${minutes}`;
  698. }
  699. function countToDay(count, unit) {
  700. let data = '';
  701. switch (unit - 0) {
  702. case 1: //日
  703. data = count
  704. break;
  705. case 2: //月
  706. data = count * 30
  707. break;
  708. case 4: //时
  709. data = count
  710. break;
  711. case 6: //周
  712. data = count * 7
  713. break;
  714. case 7: //季
  715. data = count * 90
  716. break;
  717. }
  718. return data;
  719. }
  720. function callPhone(that,phone,callback = () => {}, fail = () => {}){
  721. const text=that.$t(您是否要拨打电话)+phone+'?'
  722. uni.showModal({
  723. content: text,
  724. confirmText: '确定',
  725. success: (res) => {
  726. if (res.confirm) {
  727. uni.makePhoneCall({
  728. phoneNumber: phone,
  729. success() {},
  730. fail() {}
  731. })
  732. }
  733. },
  734. fail: (res) => {}
  735. })
  736. }
  737. module.exports = {
  738. formatTime: formatTime,
  739. obj2UrlQuery: obj2UrlQuery,
  740. getQueryObject: getQueryObject,
  741. getDefaultValue: getDefaultValue,
  742. isEmpty: isEmpty,
  743. alert: alert,
  744. isPhone: isPhone,
  745. loading: loading,
  746. successToast: successToast,
  747. simpleToast: simpleToast,
  748. isDigital: isDigital,
  749. uploadImg: uploadImg,
  750. upLoadImgQiNiu: upLoadImgQiNiu,
  751. upLoadImgQiNiu2: upLoadImgQiNiu2,
  752. inArray: inArray,
  753. compareVersion: compareVersion,
  754. formatDateTime: formatDateTime,
  755. formatSeconds: formatSeconds,
  756. hueRotate: hueRotate,
  757. toArrayBuffer: toArrayBuffer,
  758. getASCIICode: getASCIICode,
  759. completArrayCRC: completArrayCRC,
  760. getFlatternDistance: getFlatternDistance,
  761. checkVersion: checkVersion,
  762. bluetoothGetCtlData: bluetoothGetCtlData,
  763. reportBms: reportBms,
  764. getQVConfig: getQVConfig,
  765. reportLog: reportLog,
  766. preventMultipleClick: preventMultipleClick,
  767. maskPhoneNumber: maskPhoneNumber,
  768. formatDistance: formatDistance,
  769. formatWeight: formatWeight,
  770. formatMinuteTime: formatMinuteTime,
  771. loadAugmentTime: loadAugmentTime,
  772. formatDate: formatDate,
  773. formatTimeDate: formatTimeDate,
  774. getToDay: getToDay,
  775. getTimeToDay: getTimeToDay,
  776. isObjectEmpty: isObjectEmpty,
  777. isWithinTimeRange:isWithinTimeRange,
  778. formatToHHMM:formatToHHMM,
  779. hideProvinceAndCity:hideProvinceAndCity,
  780. formatTimeScan:formatTimeScan,
  781. calculateRemainingTime:calculateRemainingTime,
  782. countToDay:countToDay,
  783. getFormattedTime:getFormattedTime,
  784. callPhone:callPhone,
  785. };