index.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. import test from './test.js';
  2. import { round } from './digit.js';
  3. import {
  4. t
  5. } from '@/locale';
  6. import wx from 'weixin-js-sdk';
  7. /**
  8. * @description 如果value小于min,取min;如果value大于max,取max
  9. * @param {number} min
  10. * @param {number} max
  11. * @param {number} value
  12. */
  13. function range(min = 0, max = 0, value = 0) {
  14. return Math.max(min, Math.min(max, Number(value)));
  15. }
  16. /**
  17. * @description 用于获取用户传递值的px值 如果用户传递了"xxpx"或者"xxrpx",取出其数值部分,如果是"xxxrpx"还需要用过uni.upx2px进行转换
  18. * @param {number|string} value 用户传递值的px值
  19. * @param {boolean} unit
  20. * @returns {number|string}
  21. */
  22. export function getPx(value, unit = false) {
  23. if (test.number(value)) {
  24. return unit ? `${value}px` : Number(value);
  25. }
  26. // 如果带有rpx,先取出其数值部分,再转为px值
  27. if (/(rpx|upx)$/.test(value)) {
  28. return unit ? `${uni.upx2px(parseInt(value))}px` : Number(uni.upx2px(parseInt(value)));
  29. }
  30. return unit ? `${parseInt(value)}px` : parseInt(value);
  31. }
  32. /**
  33. * @description 进行延时,以达到可以简写代码的目的
  34. * @param {number} value 堵塞时间 单位ms 毫秒
  35. * @returns {Promise} 返回promise
  36. */
  37. export function sleep(value = 30) {
  38. return new Promise((resolve) => {
  39. setTimeout(() => {
  40. resolve();
  41. }, value);
  42. });
  43. }
  44. /**
  45. * @description 运行期判断平台
  46. * @returns {string} 返回所在平台(小写)
  47. * @link 运行期判断平台 https://uniapp.dcloud.io/frame?id=判断平台
  48. */
  49. export function os() {
  50. return uni.getSystemInfoSync().platform.toLowerCase();
  51. }
  52. /**
  53. * @description 获取系统信息同步接口
  54. * @link 获取系统信息同步接口 https://uniapp.dcloud.io/api/system/info?id=getsysteminfosync
  55. */
  56. export function sys() {
  57. return uni.getSystemInfoSync();
  58. }
  59. /**
  60. * @description 取一个区间数
  61. * @param {Number} min 最小值
  62. * @param {Number} max 最大值
  63. */
  64. function random(min, max) {
  65. if (min >= 0 && max > 0 && max >= min) {
  66. const gab = max - min + 1;
  67. return Math.floor(Math.random() * gab + min);
  68. }
  69. return 0;
  70. }
  71. /**
  72. * @param {Number} len uuid的长度
  73. * @param {Boolean} firstU 将返回的首字母置为"u"
  74. * @param {Nubmer} radix 生成uuid的基数(意味着返回的字符串都是这个基数),2-二进制,8-八进制,10-十进制,16-十六进制
  75. */
  76. export function guid(len = 32, firstU = true, radix = null) {
  77. const chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'.split('');
  78. const uuid = [];
  79. radix = radix || chars.length;
  80. if (len) {
  81. // 如果指定uuid长度,只是取随机的字符,0|x为位运算,能去掉x的小数位,返回整数位
  82. for (let i = 0; i < len; i++) uuid[i] = chars[0 | (Math.random() * radix)];
  83. } else {
  84. let r;
  85. // rfc4122标准要求返回的uuid中,某些位为固定的字符
  86. uuid[8] = uuid[13] = uuid[18] = uuid[23] = '-';
  87. uuid[14] = '4';
  88. for (let i = 0; i < 36; i++) {
  89. if (!uuid[i]) {
  90. r = 0 | (Math.random() * 16);
  91. uuid[i] = chars[i == 19 ? (r & 0x3) | 0x8 : r];
  92. }
  93. }
  94. }
  95. // 移除第一个字符,并用u替代,因为第一个字符为数值时,该guuid不能用作id或者class
  96. if (firstU) {
  97. uuid.shift();
  98. return `u${uuid.join('')}`;
  99. }
  100. return uuid.join('');
  101. }
  102. /**
  103. * @description 获取父组件的参数,因为支付宝小程序不支持provide/inject的写法
  104. this.$parent在非H5中,可以准确获取到父组件,但是在H5中,需要多次this.$parent.$parent.xxx
  105. 这里默认值等于undefined有它的含义,因为最顶层元素(组件)的$parent就是undefined,意味着不传name
  106. 值(默认为undefined),就是查找最顶层的$parent
  107. * @param {string|undefined} name 父组件的参数名
  108. */
  109. export function $parent(name = undefined) {
  110. let parent = this.$parent;
  111. // 通过while历遍,这里主要是为了H5需要多层解析的问题
  112. while (parent) {
  113. // 父组件
  114. if (parent.$options && parent.$options.name !== name) {
  115. // 如果组件的name不相等,继续上一级寻找
  116. parent = parent.$parent;
  117. } else {
  118. return parent;
  119. }
  120. }
  121. return false;
  122. }
  123. /**
  124. * @description 样式转换
  125. * 对象转字符串,或者字符串转对象
  126. * @param {object | string} customStyle 需要转换的目标
  127. * @param {String} target 转换的目的,object-转为对象,string-转为字符串
  128. * @returns {object|string}
  129. */
  130. export function addStyle(customStyle, target = 'object') {
  131. // 字符串转字符串,对象转对象情形,直接返回
  132. if (
  133. test.empty(customStyle) ||
  134. (typeof customStyle === 'object' && target === 'object') ||
  135. (target === 'string' && typeof customStyle === 'string')
  136. ) {
  137. return customStyle;
  138. }
  139. // 字符串转对象
  140. if (target === 'object') {
  141. // 去除字符串样式中的两端空格(中间的空格不能去掉,比如padding: 20px 0如果去掉了就错了),空格是无用的
  142. customStyle = trim(customStyle);
  143. // 根据";"将字符串转为数组形式
  144. const styleArray = customStyle.split(';');
  145. const style = {};
  146. // 历遍数组,拼接成对象
  147. for (let i = 0; i < styleArray.length; i++) {
  148. // 'font-size:20px;color:red;',如此最后字符串有";"的话,会导致styleArray最后一个元素为空字符串,这里需要过滤
  149. if (styleArray[i]) {
  150. const item = styleArray[i].split(':');
  151. style[trim(item[0])] = trim(item[1]);
  152. }
  153. }
  154. return style;
  155. }
  156. // 这里为对象转字符串形式
  157. let string = '';
  158. for (const i in customStyle) {
  159. // 驼峰转为中划线的形式,否则css内联样式,无法识别驼峰样式属性名
  160. const key = i.replace(/([A-Z])/g, '-$1').toLowerCase();
  161. string += `${key}:${customStyle[i]};`;
  162. }
  163. // 去除两端空格
  164. return trim(string);
  165. }
  166. /**
  167. * @description 添加单位,如果有rpx,upx,%,px等单位结尾或者值为auto,直接返回,否则加上px单位结尾
  168. * @param {string|number} value 需要添加单位的值
  169. * @param {string} unit 添加的单位名 比如px
  170. */
  171. export function addUnit(value = 'auto', unit = 'px') {
  172. value = String(value);
  173. return test.number(value) ? `${value}${unit}` : value;
  174. }
  175. /**
  176. * @description 深度克隆
  177. * @param {object} obj 需要深度克隆的对象
  178. * @returns {*} 克隆后的对象或者原值(不是对象)
  179. */
  180. function deepClone(obj) {
  181. // 对常见的“非”值,直接返回原来值
  182. if ([null, undefined, NaN, false].includes(obj)) return obj;
  183. if (typeof obj !== 'object' && typeof obj !== 'function') {
  184. // 原始类型直接返回
  185. return obj;
  186. }
  187. const o = test.array(obj) ? [] : {};
  188. for (const i in obj) {
  189. if (obj.hasOwnProperty(i)) {
  190. o[i] = typeof obj[i] === 'object' ? deepClone(obj[i]) : obj[i];
  191. }
  192. }
  193. return o;
  194. }
  195. /**
  196. * @description JS对象深度合并
  197. * @param {object} target 需要拷贝的对象
  198. * @param {object} source 拷贝的来源对象
  199. * @returns {object|boolean} 深度合并后的对象或者false(入参有不是对象)
  200. */
  201. export function deepMerge(target = {}, source = {}) {
  202. target = deepClone(target);
  203. if (typeof target !== 'object' || typeof source !== 'object') return false;
  204. for (const prop in source) {
  205. if (!source.hasOwnProperty(prop)) continue;
  206. if (prop in target) {
  207. if (typeof target[prop] !== 'object') {
  208. target[prop] = source[prop];
  209. } else if (typeof source[prop] !== 'object') {
  210. target[prop] = source[prop];
  211. } else if (target[prop].concat && source[prop].concat) {
  212. target[prop] = target[prop].concat(source[prop]);
  213. } else {
  214. target[prop] = deepMerge(target[prop], source[prop]);
  215. }
  216. } else {
  217. target[prop] = source[prop];
  218. }
  219. }
  220. return target;
  221. }
  222. /**
  223. * @description error提示
  224. * @param {*} err 错误内容
  225. */
  226. function error(err) {
  227. // 开发环境才提示,生产环境不会提示
  228. if (process.env.NODE_ENV === 'development') {
  229. console.error(`SheepJS:${err}`);
  230. }
  231. }
  232. /**
  233. * @description 打乱数组
  234. * @param {array} array 需要打乱的数组
  235. * @returns {array} 打乱后的数组
  236. */
  237. function randomArray(array = []) {
  238. // 原理是sort排序,Math.random()产生0<= x < 1之间的数,会导致x-0.05大于或者小于0
  239. return array.sort(() => Math.random() - 0.5);
  240. }
  241. // padStart 的 polyfill,因为某些机型或情况,还无法支持es7的padStart,比如电脑版的微信小程序
  242. // 所以这里做一个兼容polyfill的兼容处理
  243. if (!String.prototype.padStart) {
  244. // 为了方便表示这里 fillString 用了ES6 的默认参数,不影响理解
  245. String.prototype.padStart = function (maxLength, fillString = ' ') {
  246. if (Object.prototype.toString.call(fillString) !== '[object String]') {
  247. throw new TypeError('fillString must be String');
  248. }
  249. const str = this;
  250. // 返回 String(str) 这里是为了使返回的值是字符串字面量,在控制台中更符合直觉
  251. if (str.length >= maxLength) return String(str);
  252. const fillLength = maxLength - str.length;
  253. let times = Math.ceil(fillLength / fillString.length);
  254. while ((times >>= 1)) {
  255. fillString += fillString;
  256. if (times === 1) {
  257. fillString += fillString;
  258. }
  259. }
  260. return fillString.slice(0, fillLength) + str;
  261. };
  262. }
  263. /**
  264. * @description 格式化时间
  265. * @param {String|Number} dateTime 需要格式化的时间戳
  266. * @param {String} fmt 格式化规则 yyyy:mm:dd|yyyy:mm|yyyy年mm月dd日|yyyy年mm月dd日 hh时MM分等,可自定义组合 默认yyyy-mm-dd
  267. * @returns {string} 返回格式化后的字符串
  268. */
  269. function timeFormat(dateTime = null, formatStr = 'yyyy-mm-dd') {
  270. let date;
  271. // 若传入时间为假值,则取当前时间
  272. if (!dateTime) {
  273. date = new Date();
  274. }
  275. // 若为unix秒时间戳,则转为毫秒时间戳(逻辑有点奇怪,但不敢改,以保证历史兼容)
  276. else if (/^\d{10}$/.test(dateTime?.toString().trim())) {
  277. date = new Date(dateTime * 1000);
  278. }
  279. // 若用户传入字符串格式时间戳,new Date无法解析,需做兼容
  280. else if (typeof dateTime === 'string' && /^\d+$/.test(dateTime.trim())) {
  281. date = new Date(Number(dateTime));
  282. }
  283. // 其他都认为符合 RFC 2822 规范
  284. else {
  285. // 处理平台性差异,在Safari/Webkit中,new Date仅支持/作为分割符的字符串时间
  286. date = new Date(typeof dateTime === 'string' ? dateTime.replace(/-/g, '/') : dateTime);
  287. }
  288. const timeSource = {
  289. y: date.getFullYear().toString(), // 年
  290. m: (date.getMonth() + 1).toString().padStart(2, '0'), // 月
  291. d: date.getDate().toString().padStart(2, '0'), // 日
  292. h: date.getHours().toString().padStart(2, '0'), // 时
  293. M: date.getMinutes().toString().padStart(2, '0'), // 分
  294. s: date.getSeconds().toString().padStart(2, '0'), // 秒
  295. // 有其他格式化字符需求可以继续添加,必须转化成字符串
  296. };
  297. for (const key in timeSource) {
  298. const [ret] = new RegExp(`${key}+`).exec(formatStr) || [];
  299. if (ret) {
  300. // 年可能只需展示两位
  301. const beginIndex = key === 'y' && ret.length === 2 ? 2 : 0;
  302. formatStr = formatStr.replace(ret, timeSource[key].slice(beginIndex));
  303. }
  304. }
  305. return formatStr;
  306. }
  307. /**
  308. * @description 时间戳转为多久之前
  309. * @param {String|Number} timestamp 时间戳
  310. * @param {String|Boolean} format
  311. * 格式化规则如果为时间格式字符串,超出一定时间范围,返回固定的时间格式;
  312. * 如果为布尔值false,无论什么时间,都返回多久以前的格式
  313. * @returns {string} 转化后的内容
  314. */
  315. function timeFrom(timestamp = null, format = 'yyyy-mm-dd') {
  316. if (timestamp == null) timestamp = Number(new Date());
  317. timestamp = parseInt(timestamp);
  318. // 判断用户输入的时间戳是秒还是毫秒,一般前端js获取的时间戳是毫秒(13位),后端传过来的为秒(10位)
  319. if (timestamp.toString().length == 10) timestamp *= 1000;
  320. let timer = new Date().getTime() - timestamp;
  321. timer = parseInt(timer / 1000);
  322. // 如果小于5分钟,则返回"刚刚",其他以此类推
  323. let tips = '';
  324. switch (true) {
  325. case timer < 300:
  326. tips = t('common.just_now');
  327. break;
  328. case timer >= 300 && timer < 3600:
  329. tips = t('common.minutes_ago',{m:parseInt(timer / 60)});
  330. break;
  331. case timer >= 3600 && timer < 86400:
  332. tips = t('common.hours_ago',{h:parseInt(timer / 3600)});
  333. break;
  334. case timer >= 86400 && timer < 2592000:
  335. tips = t('common.days_ago',{d:parseInt(timer / 86400)});
  336. break;
  337. default:
  338. // 如果format为false,则无论什么时间戳,都显示xx之前
  339. if (format === false) {
  340. if (timer >= 2592000 && timer < 365 * 86400) {
  341. tips = t('common.months_ago',{m:parseInt(timer / (86400 * 30))});
  342. } else {
  343. tips = t('common.years_ago',{y:parseInt(timer / (86400 * 365))});
  344. }
  345. } else {
  346. tips = timeFormat(timestamp, format);
  347. }
  348. }
  349. return tips;
  350. }
  351. /**
  352. * @description 去除空格
  353. * @param String str 需要去除空格的字符串
  354. * @param String pos both(左右)|left|right|all 默认both
  355. */
  356. function trim(str, pos = 'both') {
  357. str = String(str);
  358. if (pos == 'both') {
  359. return str.replace(/^\s+|\s+$/g, '');
  360. }
  361. if (pos == 'left') {
  362. return str.replace(/^\s*/, '');
  363. }
  364. if (pos == 'right') {
  365. return str.replace(/(\s*$)/g, '');
  366. }
  367. if (pos == 'all') {
  368. return str.replace(/\s+/g, '');
  369. }
  370. return str;
  371. }
  372. /**
  373. * @description 对象转url参数
  374. * @param {object} data,对象
  375. * @param {Boolean} isPrefix,是否自动加上"?"
  376. * @param {string} arrayFormat 规则 indices|brackets|repeat|comma
  377. */
  378. function queryParams(data = {}, isPrefix = true, arrayFormat = 'brackets') {
  379. const prefix = isPrefix ? '?' : '';
  380. const _result = [];
  381. if (['indices', 'brackets', 'repeat', 'comma'].indexOf(arrayFormat) == -1)
  382. arrayFormat = 'brackets';
  383. for (const key in data) {
  384. const value = data[key];
  385. // 去掉为空的参数
  386. if (['', undefined, null].indexOf(value) >= 0) {
  387. continue;
  388. }
  389. // 如果值为数组,另行处理
  390. if (value.constructor === Array) {
  391. // e.g. {ids: [1, 2, 3]}
  392. switch (arrayFormat) {
  393. case 'indices':
  394. // 结果: ids[0]=1&ids[1]=2&ids[2]=3
  395. for (let i = 0; i < value.length; i++) {
  396. _result.push(`${key}[${i}]=${value[i]}`);
  397. }
  398. break;
  399. case 'brackets':
  400. // 结果: ids[]=1&ids[]=2&ids[]=3
  401. value.forEach((_value) => {
  402. _result.push(`${key}[]=${_value}`);
  403. });
  404. break;
  405. case 'repeat':
  406. // 结果: ids=1&ids=2&ids=3
  407. value.forEach((_value) => {
  408. _result.push(`${key}=${_value}`);
  409. });
  410. break;
  411. case 'comma':
  412. // 结果: ids=1,2,3
  413. let commaStr = '';
  414. value.forEach((_value) => {
  415. commaStr += (commaStr ? ',' : '') + _value;
  416. });
  417. _result.push(`${key}=${commaStr}`);
  418. break;
  419. default:
  420. value.forEach((_value) => {
  421. _result.push(`${key}[]=${_value}`);
  422. });
  423. }
  424. } else {
  425. _result.push(`${key}=${value}`);
  426. }
  427. }
  428. return _result.length ? prefix + _result.join('&') : '';
  429. }
  430. /**
  431. * 显示消息提示框
  432. * @param {String} title 提示的内容,长度与 icon 取值有关。
  433. * @param {Number} duration 提示的延迟时间,单位毫秒,默认:2000
  434. */
  435. function toast(title, duration = 2000) {
  436. uni.showToast({
  437. title: String(title),
  438. icon: 'none',
  439. duration,
  440. });
  441. }
  442. /**
  443. * @description 根据主题type值,获取对应的图标
  444. * @param {String} type 主题名称,primary|info|error|warning|success
  445. * @param {boolean} fill 是否使用fill填充实体的图标
  446. */
  447. function type2icon(type = 'success', fill = false) {
  448. // 如果非预置值,默认为success
  449. if (['primary', 'info', 'error', 'warning', 'success'].indexOf(type) == -1) type = 'success';
  450. let iconName = '';
  451. // 目前(2019-12-12),info和primary使用同一个图标
  452. switch (type) {
  453. case 'primary':
  454. iconName = 'info-circle';
  455. break;
  456. case 'info':
  457. iconName = 'info-circle';
  458. break;
  459. case 'error':
  460. iconName = 'close-circle';
  461. break;
  462. case 'warning':
  463. iconName = 'error-circle';
  464. break;
  465. case 'success':
  466. iconName = 'checkmark-circle';
  467. break;
  468. default:
  469. iconName = 'checkmark-circle';
  470. }
  471. // 是否是实体类型,加上-fill,在icon组件库中,实体的类名是后面加-fill的
  472. if (fill) iconName += '-fill';
  473. return iconName;
  474. }
  475. /**
  476. * @description 数字格式化
  477. * @param {number|string} number 要格式化的数字
  478. * @param {number} decimals 保留几位小数
  479. * @param {string} decimalPoint 小数点符号
  480. * @param {string} thousandsSeparator 千分位符号
  481. * @returns {string} 格式化后的数字
  482. */
  483. function priceFormat(number, decimals = 0, decimalPoint = '.', thousandsSeparator = ',') {
  484. number = `${number}`.replace(/[^0-9+-Ee.]/g, '');
  485. const n = !isFinite(+number) ? 0 : +number;
  486. const prec = !isFinite(+decimals) ? 0 : Math.abs(decimals);
  487. const sep = typeof thousandsSeparator === 'undefined' ? ',' : thousandsSeparator;
  488. const dec = typeof decimalPoint === 'undefined' ? '.' : decimalPoint;
  489. let s = '';
  490. s = (prec ? round(n, prec) + '' : `${Math.round(n)}`).split('.');
  491. const re = /(-?\d+)(\d{3})/;
  492. while (re.test(s[0])) {
  493. s[0] = s[0].replace(re, `$1${sep}$2`);
  494. }
  495. if ((s[1] || '').length < prec) {
  496. s[1] = s[1] || '';
  497. s[1] += new Array(prec - s[1].length + 1).join('0');
  498. }
  499. return s.join(dec);
  500. }
  501. /**
  502. * @description 获取duration值
  503. * 如果带有ms或者s直接返回,如果大于一定值,认为是ms单位,小于一定值,认为是s单位
  504. * 比如以30位阈值,那么300大于30,可以理解为用户想要的是300ms,而不是想花300s去执行一个动画
  505. * @param {String|number} value 比如: "1s"|"100ms"|1|100
  506. * @param {boolean} unit 提示: 如果是false 默认返回number
  507. * @return {string|number}
  508. */
  509. function getDuration(value, unit = true) {
  510. const valueNum = parseInt(value);
  511. if (unit) {
  512. if (/s$/.test(value)) return value;
  513. return value > 30 ? `${value}ms` : `${value}s`;
  514. }
  515. if (/ms$/.test(value)) return valueNum;
  516. if (/s$/.test(value)) return valueNum > 30 ? valueNum : valueNum * 1000;
  517. return valueNum;
  518. }
  519. /**
  520. * @description 日期的月或日补零操作
  521. * @param {String} value 需要补零的值
  522. */
  523. function padZero(value) {
  524. return `00${value}`.slice(-2);
  525. }
  526. /**
  527. * @description 获取某个对象下的属性,用于通过类似'a.b.c'的形式去获取一个对象的的属性的形式
  528. * @param {object} obj 对象
  529. * @param {string} key 需要获取的属性字段
  530. * @returns {*}
  531. */
  532. function getProperty(obj, key) {
  533. if (!obj) {
  534. return;
  535. }
  536. if (typeof key !== 'string' || key === '') {
  537. return '';
  538. }
  539. if (key.indexOf('.') !== -1) {
  540. const keys = key.split('.');
  541. let firstObj = obj[keys[0]] || {};
  542. for (let i = 1; i < keys.length; i++) {
  543. if (firstObj) {
  544. firstObj = firstObj[keys[i]];
  545. }
  546. }
  547. return firstObj;
  548. }
  549. return obj[key];
  550. }
  551. /**
  552. * @description 设置对象的属性值,如果'a.b.c'的形式进行设置
  553. * @param {object} obj 对象
  554. * @param {string} key 需要设置的属性
  555. * @param {string} value 设置的值
  556. */
  557. function setProperty(obj, key, value) {
  558. if (!obj) {
  559. return;
  560. }
  561. // 递归赋值
  562. const inFn = function (_obj, keys, v) {
  563. // 最后一个属性key
  564. if (keys.length === 1) {
  565. _obj[keys[0]] = v;
  566. return;
  567. }
  568. // 0~length-1个key
  569. while (keys.length > 1) {
  570. const k = keys[0];
  571. if (!_obj[k] || typeof _obj[k] !== 'object') {
  572. _obj[k] = {};
  573. }
  574. const key = keys.shift();
  575. // 自调用判断是否存在属性,不存在则自动创建对象
  576. inFn(_obj[k], keys, v);
  577. }
  578. };
  579. if (typeof key !== 'string' || key === '') {
  580. } else if (key.indexOf('.') !== -1) {
  581. // 支持多层级赋值操作
  582. const keys = key.split('.');
  583. inFn(obj, keys, value);
  584. } else {
  585. obj[key] = value;
  586. }
  587. }
  588. /**
  589. * @description 获取当前页面路径
  590. */
  591. function page() {
  592. const pages = getCurrentPages();
  593. // 某些特殊情况下(比如页面进行redirectTo时的一些时机),pages可能为空数组
  594. return `/${pages[pages.length - 1]?.route ?? ''}`;
  595. }
  596. /**
  597. * @description 获取当前路由栈实例数组
  598. */
  599. function pages() {
  600. const pages = getCurrentPages();
  601. return pages;
  602. }
  603. /**
  604. * 获取H5-真实根地址 兼容hash+history模式
  605. */
  606. export function getRootUrl() {
  607. let url = '';
  608. // #ifdef H5
  609. url = location.origin + '/';
  610. if (location.hash !== '') {
  611. url += '#/';
  612. }
  613. // #endif
  614. return url;
  615. }
  616. /**
  617. * copyText 多端复制文本
  618. */
  619. export function copyText(text) {
  620. // #ifndef H5
  621. uni.setClipboardData({
  622. data: text,
  623. success: function () {
  624. toast(t('common.copy_success'));
  625. },
  626. fail: function () {
  627. toast(t('common.copy_fail'));
  628. },
  629. });
  630. // #endif
  631. // #ifdef H5
  632. var createInput = document.createElement('textarea');
  633. createInput.value = text;
  634. document.body.appendChild(createInput);
  635. createInput.select();
  636. document.execCommand('Copy');
  637. createInput.className = 'createInput';
  638. createInput.style.display = 'none';
  639. toast(t('common.copy_success'));
  640. // #endif
  641. }
  642. export default {
  643. range,
  644. getPx,
  645. sleep,
  646. os,
  647. sys,
  648. random,
  649. guid,
  650. $parent,
  651. addStyle,
  652. addUnit,
  653. deepClone,
  654. deepMerge,
  655. error,
  656. randomArray,
  657. timeFormat,
  658. timeFrom,
  659. trim,
  660. queryParams,
  661. toast,
  662. type2icon,
  663. priceFormat,
  664. getDuration,
  665. padZero,
  666. getProperty,
  667. setProperty,
  668. page,
  669. pages,
  670. test,
  671. getRootUrl,
  672. copyText,
  673. };