util.js 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. import {
  11. TOKENNAME,
  12. HTTP_REQUEST_URL
  13. } from '../config/app.js';
  14. import store from '../store';
  15. import {
  16. pathToBase64
  17. } from '@/plugin/image-tools/index.js';
  18. // #ifdef APP-PLUS
  19. import permision from "./permission.js"
  20. // #endif
  21. export default {
  22. /**
  23. * 字符串截取
  24. * @obj 传入的数据
  25. * @state 0 某个参数之前 1某个参数之后
  26. *
  27. *
  28. * **/
  29. stringIntercept: function(obj, state, type) {
  30. var index = obj.lastIndexOf(type);
  31. if (state == 0) {
  32. obj = obj.substring(0, index);
  33. } else {
  34. obj = obj.substring(index + 1, obj.length);
  35. }
  36. return obj;
  37. },
  38. /**
  39. * opt object | string
  40. * to_url object | string
  41. * 例:
  42. * this.Tips('/pages/test/test'); 跳转不提示
  43. * this.Tips({title:'提示'},'/pages/test/test'); 提示并跳转
  44. * this.Tips({title:'提示'},{tab:1,url:'/pages/index/index'}); 提示并跳转值table上
  45. * tab=1 一定时间后跳转至 table上
  46. * tab=2 一定时间后跳转至非 table上
  47. * tab=3 一定时间后返回上页面
  48. * tab=4 关闭所有页面跳转至非table上
  49. * tab=5 关闭当前页面跳转至table上
  50. */
  51. Tips: function(opt, to_url) {
  52. if (typeof opt == 'string') {
  53. to_url = opt;
  54. opt = {};
  55. }
  56. let title = opt.title || '',
  57. icon = opt.icon || 'none',
  58. endtime = opt.endtime || 2000,
  59. success = opt.success;
  60. if (title) uni.showToast({
  61. title: title,
  62. icon: icon,
  63. duration: endtime,
  64. success
  65. })
  66. if (to_url != undefined) {
  67. if (typeof to_url == 'object') {
  68. let tab = to_url.tab || 1,
  69. url = to_url.url || '';
  70. switch (tab) {
  71. case 1:
  72. //一定时间后跳转至 table
  73. setTimeout(function() {
  74. uni.switchTab({
  75. url: url
  76. })
  77. }, endtime);
  78. break;
  79. case 2:
  80. //跳转至非table页面
  81. setTimeout(function() {
  82. uni.navigateTo({
  83. url: url,
  84. })
  85. }, endtime);
  86. break;
  87. case 3:
  88. //返回上页面
  89. setTimeout(function() {
  90. // #ifndef H5
  91. uni.navigateBack({
  92. delta: parseInt(url),
  93. })
  94. // #endif
  95. // #ifdef H5
  96. history.back();
  97. // #endif
  98. }, endtime);
  99. break;
  100. case 4:
  101. //关闭当前所有页面跳转至非table页面
  102. setTimeout(function() {
  103. uni.reLaunch({
  104. url: url,
  105. })
  106. }, endtime);
  107. break;
  108. case 5:
  109. //关闭当前页面跳转至非table页面
  110. setTimeout(function() {
  111. uni.redirectTo({
  112. url: url,
  113. })
  114. }, endtime);
  115. break;
  116. }
  117. } else if (typeof to_url == 'function') {
  118. setTimeout(function() {
  119. to_url && to_url();
  120. }, endtime);
  121. } else {
  122. //没有提示时跳转不延迟
  123. setTimeout(function() {
  124. uni.navigateTo({
  125. url: to_url,
  126. })
  127. }, title ? endtime : 0);
  128. }
  129. }
  130. },
  131. /**
  132. * 移除数组中的某个数组并组成新的数组返回
  133. * @param array array 需要移除的数组
  134. * @param int index 需要移除的数组的键值
  135. * @param string | int 值
  136. * @return array
  137. *
  138. */
  139. ArrayRemove: function(array, index, value) {
  140. const valueArray = [];
  141. if (array instanceof Array) {
  142. for (let i = 0; i < array.length; i++) {
  143. if (typeof index == 'number' && array[index] != i) {
  144. valueArray.push(array[i]);
  145. } else if (typeof index == 'string' && array[i][index] != value) {
  146. valueArray.push(array[i]);
  147. }
  148. }
  149. }
  150. return valueArray;
  151. },
  152. /**
  153. * 生成海报获取文字
  154. * @param string text 为传入的文本
  155. * @param int num 为单行显示的字节长度
  156. * @return array
  157. */
  158. textByteLength: function(text, num) {
  159. let strLength = 0;
  160. let rows = 1;
  161. let str = 0;
  162. let arr = [];
  163. for (let j = 0; j < text.length; j++) {
  164. if (text.charCodeAt(j) > 255) {
  165. strLength += 2;
  166. if (strLength > rows * num) {
  167. strLength++;
  168. arr.push(text.slice(str, j));
  169. str = j;
  170. rows++;
  171. }
  172. } else {
  173. strLength++;
  174. if (strLength > rows * num) {
  175. arr.push(text.slice(str, j));
  176. str = j;
  177. rows++;
  178. }
  179. }
  180. }
  181. arr.push(text.slice(str, text.length));
  182. return [strLength, arr, rows] // [处理文字的总字节长度,每行显示内容的数组,行数]
  183. },
  184. /**
  185. * 获取分享海报
  186. * @param array arr2 海报素材
  187. * @param string store_name 素材文字
  188. * @param string price 价格
  189. * @param function successFn 回调函数
  190. *
  191. *
  192. */
  193. PosterCanvas: function(arr2, store_name, price, successFn, errFun) {
  194. let that = this;
  195. const ctx = uni.createCanvasContext('myCanvas');
  196. ctx.clearRect(0, 0, 0, 0);
  197. /**
  198. * 只能获取合法域名下的图片信息,本地调试无法获取
  199. *
  200. */
  201. uni.getImageInfo({
  202. src: arr2[0],
  203. success: function(res) {
  204. console.log(res, 'getImageInfo')
  205. const WIDTH = res.width;
  206. const HEIGHT = res.height;
  207. console.log(1,arr2[0])
  208. ctx.drawImage(arr2[0], 0, 0, WIDTH, HEIGHT);
  209. console.log(2,arr2[1])
  210. ctx.drawImage(arr2[1], 0, 0, WIDTH, WIDTH);
  211. ctx.save();
  212. let r = 90;
  213. let d = r * 2;
  214. let cx = 40;
  215. let cy = 990;
  216. ctx.arc(cx + r, cy + r, r, 0, 2 * Math.PI);
  217. // ctx.clip();
  218. console.log(3,arr2[2])
  219. ctx.drawImage(arr2[2], cx, cy, d, d);
  220. ctx.restore();
  221. const CONTENT_ROW_LENGTH = 40;
  222. let [contentLeng, contentArray, contentRows] = that.textByteLength(store_name, CONTENT_ROW_LENGTH);
  223. if (contentRows > 2) {
  224. contentRows = 2;
  225. let textArray = contentArray.slice(0, 2);
  226. textArray[textArray.length - 1] += '……';
  227. contentArray = textArray;
  228. }
  229. ctx.setTextAlign('center');
  230. ctx.setFontSize(32);
  231. let contentHh = 32 * 1.3;
  232. for (let m = 0; m < contentArray.length; m++) {
  233. ctx.fillText(contentArray[m], WIDTH / 2, 820 + contentHh * m);
  234. }
  235. ctx.setTextAlign('center')
  236. ctx.setFontSize(48);
  237. ctx.setFillStyle('red');
  238. ctx.fillText('¥' + price, WIDTH / 2, 880 + contentHh);
  239. console.log(4)
  240. ctx.draw(true, function() {
  241. uni.canvasToTempFilePath({
  242. canvasId: 'myCanvas',
  243. fileType: 'png',
  244. destWidth: WIDTH,
  245. destHeight: HEIGHT,
  246. success: function(res) {
  247. console.log('res',res)
  248. uni.hideLoading();
  249. successFn && successFn(res.tempFilePath);
  250. },
  251. fail: function(err) {
  252. console.log('err',err)
  253. uni.hideLoading();
  254. errFun && errFun(err);
  255. }
  256. })
  257. });
  258. },
  259. fail: function(err) {
  260. uni.hideLoading();
  261. that.Tips({
  262. title: '无法获取图片信息'
  263. });
  264. errFun && errFun(err);
  265. }
  266. })
  267. },
  268. /**
  269. * 获取视频分享海报
  270. * @param array arr2 海报素材
  271. * @param string store_name 素材文字
  272. * @param string price 价格
  273. * @param function successFn 回调函数
  274. *
  275. *
  276. */
  277. videoPosterCanvas: function(arr2, content, nickname, successFn, errFun) {
  278. let that = this;
  279. const ctx = uni.createCanvasContext('myCanvas');
  280. ctx.clearRect(0, 0, 0, 0);
  281. /**
  282. * 只能获取合法域名下的图片信息,本地调试无法获取
  283. *
  284. */
  285. uni.getImageInfo({
  286. src: arr2[0],
  287. success: function(res) {
  288. console.log(res, 'getImageInfo')
  289. const WIDTH = res.width;
  290. const HEIGHT = res.height;
  291. let r = 90;
  292. let d = r * 2;
  293. let cx = 40;
  294. let cy = 760;
  295. let ux = 50;
  296. let uy = 700;
  297. ctx.drawImage(arr2[0], 0, 0, WIDTH, HEIGHT);
  298. ctx.drawImage(arr2[1], 32, 32, WIDTH-64, WIDTH-64);
  299. ctx.strokeStyle = "#ffffff";
  300. ctx.save();
  301. ctx.arc(cx + r, cy + r, r, 0, 2 * Math.PI);
  302. ctx.drawImage(arr2[2], 530, 760, d, d);
  303. that.handleBorderRect(ctx, ux, uy, r, r, 45);
  304. ctx.clip();
  305. ctx.stockStyle ="#ffffff";
  306. ctx.drawImage(arr2[3], ux, uy, r, r);
  307. ctx.restore();
  308. ctx.setTextAlign('left')
  309. ctx.setFontSize(28);
  310. ctx.setFillStyle('#282828');
  311. ctx.fillText(nickname, r+60, 760);
  312. ctx.setTextAlign('left')
  313. ctx.setFontSize(28);
  314. ctx.setFillStyle('#282828');
  315. const CONTENT_ROW_LENGTH = 25;
  316. let [contentLeng, contentArray, contentRows] = that.textByteLength(content, CONTENT_ROW_LENGTH);
  317. if (contentRows > 2) {
  318. contentRows = 2;
  319. let textArray = contentArray.slice(0, 2);
  320. textArray[textArray.length - 1] += '……';
  321. contentArray = textArray;
  322. }
  323. ctx.setTextAlign('left');
  324. // ctx.setFontSize(32);
  325. ctx.font = 'bold 32px Arial';
  326. let contentHh = 32 * 1.3;
  327. for (let m = 0; m < contentArray.length; m++) {
  328. ctx.fillText(contentArray[m], 55, 850 + contentHh * m);
  329. }
  330. ctx.draw(true, function() {
  331. uni.canvasToTempFilePath({
  332. canvasId: 'myCanvas',
  333. fileType: 'png',
  334. destWidth: WIDTH,
  335. destHeight: HEIGHT,
  336. success: function(res) {
  337. uni.hideLoading();
  338. successFn && successFn(res.tempFilePath);
  339. },
  340. fail: function(err) {
  341. uni.hideLoading();
  342. errFun && errFun(err);
  343. }
  344. })
  345. });
  346. },
  347. fail: function(err) {
  348. uni.hideLoading();
  349. that.Tips({
  350. title: '无法获取图片信息'
  351. });
  352. errFun && errFun(err);
  353. }
  354. })
  355. },
  356. /**
  357. * 图片圆角设置
  358. * @param string x x轴位置
  359. * @param string y y轴位置
  360. * @param string w 图片宽
  361. * @param string y 图片高
  362. * @param string r 圆角值
  363. */
  364. handleBorderRect(ctx, x, y, w, h, r) {
  365. ctx.beginPath();
  366. // 左上角
  367. ctx.arc(x + r, y + r, r, Math.PI, 1.5 * Math.PI);
  368. ctx.moveTo(x + r, y);
  369. ctx.lineTo(x + w - r, y);
  370. ctx.lineTo(x + w, y + r);
  371. // 右上角
  372. ctx.arc(x + w - r, y + r, r, 1.5 * Math.PI, 2 * Math.PI);
  373. ctx.lineTo(x + w, y + h - r);
  374. ctx.lineTo(x + w - r, y + h);
  375. // 右下角
  376. ctx.arc(x + w - r, y + h - r, r, 0, 0.5 * Math.PI);
  377. ctx.lineTo(x + r, y + h);
  378. ctx.lineTo(x, y + h - r);
  379. // 左下角
  380. ctx.arc(x + r, y + h - r, r, 0.5 * Math.PI, Math.PI);
  381. ctx.lineTo(x, y + r);
  382. ctx.lineTo(x + r, y);
  383. ctx.fill();
  384. ctx.closePath();
  385. },
  386. /**
  387. * 用户信息分享海报
  388. * @param array arr2 海报素材 1背景 0二维码
  389. * @param string nickname 昵称
  390. * @param string sitename 价格
  391. * @param function successFn 回调函数
  392. *
  393. *
  394. */
  395. userPosterCanvas: function(arr2, nickname, sitename, index, w, h, successFn) {
  396. let that = this;
  397. const ctx = uni.createCanvasContext('myCanvas' + index);
  398. console.log(ctx)
  399. ctx.clearRect(0, 0, 0, 0);
  400. /**
  401. * 只能获取合法域名下的图片信息,本地调试无法获取
  402. *
  403. */
  404. uni.getImageInfo({
  405. src: arr2[1],
  406. success: function(res) {
  407. const WIDTH = res.width;
  408. const HEIGHT = res.height;
  409. ctx.fillStyle = '#fff';
  410. ctx.fillRect(0, 0, w, h);
  411. ctx.drawImage(arr2[0], 0, 0, WIDTH, HEIGHT);
  412. ctx.drawImage(arr2[1], 0, 0, w, h);
  413. ctx.setTextAlign('left')
  414. ctx.setFontSize(12);
  415. ctx.setFillStyle('#333');
  416. // x:240 y:426
  417. let codex = 0.1906
  418. let codey = 0.7746
  419. let codeSize = 0.21666
  420. let namex = 0.4283
  421. let namey = 0.8215
  422. let markx = 0.4283
  423. let marky = 0.8685
  424. ctx.drawImage(arr2[0], w * codex, h * codey, w * codeSize, w * codeSize);
  425. if (w < 270) {
  426. ctx.setFontSize(8);
  427. } else {
  428. ctx.setFontSize(10);
  429. }
  430. ctx.fillText(nickname, w * namex, h * namey);
  431. if (w < 270) {
  432. ctx.setFontSize(8);
  433. } else {
  434. ctx.setFontSize(10);
  435. }
  436. ctx.fillText(sitename, w * markx, h * marky);
  437. ctx.save();
  438. ctx.draw(false,setTimeout(()=>{
  439. uni.canvasToTempFilePath({
  440. canvasId: 'myCanvas' + index,
  441. fileType: 'png',
  442. // quality: 1,
  443. destWidth: WIDTH,
  444. destHeight: HEIGHT,
  445. success: function(res) {
  446. console.log(res)
  447. successFn && successFn(res.tempFilePath);
  448. },
  449. fail: function(err) {
  450. console.log(err)
  451. uni.hideLoading();
  452. }
  453. })
  454. },1000))
  455. },
  456. fail: function(err) {
  457. uni.hideLoading();
  458. that.Tips({
  459. title: '无法获取图片信息'
  460. });
  461. }
  462. })
  463. },
  464. /*
  465. * 单图上传
  466. * @param object opt
  467. * @param callable successCallback 成功执行方法 data
  468. * @param callable errorCallback 失败执行方法
  469. */
  470. uploadImageOne: function(opt, successCallback, errorCallback) {
  471. let that = this;
  472. if (typeof opt === 'string') {
  473. let url = opt;
  474. opt = {};
  475. opt.url = url;
  476. }
  477. let count = opt.count || 1,
  478. sizeType = opt.sizeType || ['compressed'],
  479. sourceType = opt.sourceType || ['album', 'camera'],
  480. is_load = opt.is_load || true,
  481. uploadUrl = opt.url || '',
  482. inputName = opt.name || 'field';
  483. uni.chooseImage({
  484. count: count, //最多可以选择的图片总数
  485. sizeType: sizeType, // 可以指定是原图还是压缩图,默认二者都有
  486. sourceType: sourceType, // 可以指定来源是相册还是相机,默认二者都有
  487. success: function(res) {
  488. //启动上传等待中...
  489. uni.showLoading({
  490. title: '图片上传中',
  491. });
  492. uni.uploadFile({
  493. url: HTTP_REQUEST_URL + '/api/' + uploadUrl + '/' + inputName,
  494. filePath: res.tempFilePaths[0],
  495. name: inputName,
  496. formData: {
  497. 'filename': inputName
  498. },
  499. header: {
  500. // #ifdef MP
  501. "Content-Type": "multipart/form-data",
  502. // #endif
  503. [TOKENNAME]: 'Bearer ' + store.state.app.token
  504. },
  505. success: function(res) {
  506. uni.hideLoading();
  507. if (res.statusCode == 403) {
  508. that.Tips({
  509. title: res.data
  510. });
  511. } else {
  512. let data = res.data ? JSON.parse(res.data) : {};
  513. if (data.status == 200) {
  514. successCallback && successCallback(data)
  515. } else {
  516. errorCallback && errorCallback(data);
  517. that.Tips({
  518. title: data.message
  519. });
  520. }
  521. }
  522. },
  523. fail: function(res) {
  524. uni.hideLoading();
  525. that.Tips({
  526. title: '上传图片失败'
  527. });
  528. }
  529. })
  530. }
  531. })
  532. },
  533. /**
  534. * 小程序头像获取上传
  535. * @param uploadUrl 上传接口地址
  536. * @param filePath 上传文件路径
  537. * @param successCallback success回调
  538. * @param errorCallback err回调
  539. */
  540. uploadImgs(uploadUrl, filePath, successCallback, errorCallback) {
  541. let that = this;
  542. let inputName = 'pics';
  543. uni.uploadFile({
  544. url: HTTP_REQUEST_URL + '/api/' + uploadUrl + '/' + inputName,
  545. filePath: filePath,
  546. fileType: 'image',
  547. name: 'pics',
  548. formData: {
  549. 'filename': 'pics'
  550. },
  551. header: {
  552. // #ifdef MP
  553. "Content-Type": "multipart/form-data",
  554. // #endif
  555. [TOKENNAME]: 'Bearer ' + store.state.app.token
  556. },
  557. success: (res) => {
  558. uni.hideLoading();
  559. if (res.statusCode == 403) {
  560. that.Tips({
  561. title: res.data
  562. });
  563. } else {
  564. let data = res.data ? JSON
  565. .parse(res.data) : {};
  566. if (data.status == 200) {
  567. successCallback &&
  568. successCallback(data)
  569. } else {
  570. errorCallback &&
  571. errorCallback(data);
  572. that.Tips({
  573. title: data.message
  574. });
  575. }
  576. }
  577. },
  578. fail: (err) => {
  579. console.log(err)
  580. uni.hideLoading();
  581. that.Tips({
  582. title: i18n.t(`上传图片失败`)
  583. });
  584. }
  585. })
  586. },
  587. serialize: function(obj) {
  588. var str = [];
  589. for (var p in obj)
  590. if (obj.hasOwnProperty(p)) {
  591. str.push(encodeURIComponent(p) + "=" + encodeURIComponent(obj[p]));
  592. }
  593. return str.join("&");
  594. },
  595. getNowUrl: function() {
  596. const pages = getCurrentPages(),
  597. page = pages[pages.length - 1],
  598. query = this.serialize(page.options || {});
  599. return page.route + (query ? '?' + query : '');
  600. },
  601. /**
  602. * 处理服务器扫码带进来的参数
  603. * @param string param 扫码携带参数
  604. * @param string k 整体分割符 默认为:&
  605. * @param string p 单个分隔符 默认为:=
  606. * @return object
  607. *
  608. */
  609. // #ifdef MP
  610. getUrlParams: function(param, k, p) {
  611. if (typeof param != 'string') return {};
  612. k = k ? k : '&'; //整体参数分隔符
  613. p = p ? p : '='; //单个参数分隔符
  614. var value = {};
  615. if (param.indexOf(k) !== -1) {
  616. param = param.split(k);
  617. for (var val in param) {
  618. if (param[val].indexOf(p) !== -1) {
  619. var item = param[val].split(p);
  620. value[item[0]] = item[1];
  621. }
  622. }
  623. } else if (param.indexOf(p) !== -1) {
  624. var item = param.split(p);
  625. value[item[0]] = item[1];
  626. } else {
  627. return param;
  628. }
  629. return value;
  630. },
  631. // #endif
  632. /*
  633. * 合并数组
  634. */
  635. SplitArray(list, sp) {
  636. if (typeof list != 'object') return [];
  637. if (sp === undefined) sp = [];
  638. for (var i = 0; i < list.length; i++) {
  639. sp.push(list[i]);
  640. }
  641. return sp;
  642. },
  643. trim(str) {
  644. return String.prototype.trim.call(str);
  645. },
  646. $h: {
  647. //除法函数,用来得到精确的除法结果
  648. //说明:javascript的除法结果会有误差,在两个浮点数相除的时候会比较明显。这个函数返回较为精确的除法结果。
  649. //调用:$h.Div(arg1,arg2)
  650. //返回值:arg1除以arg2的精确结果
  651. Div: function(arg1, arg2) {
  652. arg1 = parseFloat(arg1);
  653. arg2 = parseFloat(arg2);
  654. var t1 = 0,
  655. t2 = 0,
  656. r1, r2;
  657. try {
  658. t1 = arg1.toString().split(".")[1].length;
  659. } catch (e) {}
  660. try {
  661. t2 = arg2.toString().split(".")[1].length;
  662. } catch (e) {}
  663. r1 = Number(arg1.toString().replace(".", ""));
  664. r2 = Number(arg2.toString().replace(".", ""));
  665. return this.Mul(r1 / r2, Math.pow(10, t2 - t1));
  666. },
  667. //加法函数,用来得到精确的加法结果
  668. //说明:javascript的加法结果会有误差,在两个浮点数相加的时候会比较明显。这个函数返回较为精确的加法结果。
  669. //调用:$h.Add(arg1,arg2)
  670. //返回值:arg1加上arg2的精确结果
  671. Add: function(arg1, arg2) {
  672. arg2 = parseFloat(arg2);
  673. var r1, r2, m;
  674. try {
  675. r1 = arg1.toString().split(".")[1].length
  676. } catch (e) {
  677. r1 = 0
  678. }
  679. try {
  680. r2 = arg2.toString().split(".")[1].length
  681. } catch (e) {
  682. r2 = 0
  683. }
  684. m = Math.pow(100, Math.max(r1, r2));
  685. return (this.Mul(arg1, m) + this.Mul(arg2, m)) / m;
  686. },
  687. //减法函数,用来得到精确的减法结果
  688. //说明:javascript的加法结果会有误差,在两个浮点数相加的时候会比较明显。这个函数返回较为精确的减法结果。
  689. //调用:$h.Sub(arg1,arg2)
  690. //返回值:arg1减去arg2的精确结果
  691. Sub: function(arg1, arg2) {
  692. arg1 = parseFloat(arg1);
  693. arg2 = parseFloat(arg2);
  694. var r1, r2, m, n;
  695. try {
  696. r1 = arg1.toString().split(".")[1].length
  697. } catch (e) {
  698. r1 = 0
  699. }
  700. try {
  701. r2 = arg2.toString().split(".")[1].length
  702. } catch (e) {
  703. r2 = 0
  704. }
  705. m = Math.pow(10, Math.max(r1, r2));
  706. //动态控制精度长度
  707. n = (r1 >= r2) ? r1 : r2;
  708. return ((this.Mul(arg1, m) - this.Mul(arg2, m)) / m).toFixed(n);
  709. },
  710. //乘法函数,用来得到精确的乘法结果
  711. //说明:javascript的乘法结果会有误差,在两个浮点数相乘的时候会比较明显。这个函数返回较为精确的乘法结果。
  712. //调用:$h.Mul(arg1,arg2)
  713. //返回值:arg1乘以arg2的精确结果
  714. Mul: function(arg1, arg2) {
  715. arg1 = parseFloat(arg1);
  716. arg2 = parseFloat(arg2);
  717. var m = 0,
  718. s1 = arg1.toString(),
  719. s2 = arg2.toString();
  720. try {
  721. m += s1.split(".")[1].length
  722. } catch (e) {}
  723. try {
  724. m += s2.split(".")[1].length
  725. } catch (e) {}
  726. return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m);
  727. },
  728. },
  729. // 获取地理位置;
  730. $L: {
  731. async getLocation() {
  732. // #ifdef APP-PLUS
  733. let status = await this.checkPermission();
  734. if (status !== 1) {
  735. return;
  736. }
  737. // #endif
  738. // #ifdef MP-WEIXIN || MP-TOUTIAO || MP-QQ
  739. let status = await this.getSetting();
  740. if (status === 2) {
  741. this.openSetting();
  742. return;
  743. }
  744. // #endif
  745. this.doGetLocation();
  746. },
  747. doGetLocation() {
  748. uni.getLocation({
  749. success: (res) => {
  750. uni.removeStorageSync('CACHE_LONGITUDE');
  751. uni.removeStorageSync('CACHE_LATITUDE');
  752. uni.setStorageSync('CACHE_LONGITUDE', res.longitude);
  753. uni.setStorageSync('CACHE_LATITUDE', res.latitude);
  754. },
  755. fail: (err) => {
  756. // #ifdef MP-BAIDU
  757. if (err.errCode === 202 || err.errCode === 10003) { // 202模拟器 10003真机 user deny
  758. this.openSetting();
  759. }
  760. // #endif
  761. // #ifndef MP-BAIDU
  762. if (err.errMsg.indexOf("auth deny") >= 0) {
  763. uni.showToast({
  764. title: "访问位置被拒绝"
  765. })
  766. } else {
  767. uni.showToast({
  768. title: err.errMsg
  769. })
  770. }
  771. // #endif
  772. }
  773. })
  774. },
  775. getSetting: function() {
  776. return new Promise((resolve, reject) => {
  777. uni.getSetting({
  778. success: (res) => {
  779. if (res.authSetting['scope.userLocation'] === undefined) {
  780. resolve(0);
  781. return;
  782. }
  783. if (res.authSetting['scope.userLocation']) {
  784. resolve(1);
  785. } else {
  786. resolve(2);
  787. }
  788. }
  789. });
  790. });
  791. },
  792. openSetting: function() {
  793. uni.openSetting({
  794. success: (res) => {
  795. if (res.authSetting && res.authSetting['scope.userLocation']) {
  796. this.doGetLocation();
  797. }
  798. },
  799. fail: (err) => {}
  800. })
  801. },
  802. async checkPermission() {
  803. let status = permision.isIOS ? await permision.requestIOS('location') :
  804. await permision.requestAndroid('android.permission.ACCESS_FINE_LOCATION');
  805. if (status === null || status === 1) {
  806. status = 1;
  807. } else if (status === 2) {
  808. uni.showModal({
  809. content: "系统定位已关闭",
  810. confirmText: "确定",
  811. showCancel: false,
  812. success: function(res) {}
  813. })
  814. } else if (status.code) {
  815. uni.showModal({
  816. content: status.message
  817. })
  818. } else {
  819. uni.showModal({
  820. content: "需要定位权限",
  821. confirmText: "设置",
  822. success: function(res) {
  823. if (res.confirm) {
  824. permision.gotoAppSetting();
  825. }
  826. }
  827. })
  828. }
  829. return status;
  830. },
  831. }
  832. }