index.js 20 KB

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