index.js 21 KB

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