Commonutils.js 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424
  1. // import { whoami } from '../api/auth'
  2. import { USER_ID, T_STORAGE_KEY, USER_INFO } from '../constant'
  3. // import { isNull } from 'lodash-es'
  4. /**
  5. * @description 解决小数计算精度问题(en,你应该使用big.js)
  6. * @param {Number, String} data 数字
  7. * @param {Number} accuracy 保留几位小数
  8. * @returns
  9. */
  10. export const fomartNumber = (data, accuracy = 2) => {
  11. const temp = data + ''
  12. if (temp.includes('.')) {
  13. return (data * 1).toFixed(accuracy)
  14. }
  15. return data
  16. }
  17. /**
  18. * @description 批量清除缓存
  19. * @param {String[]} cacheArr 要清除的缓存string数组
  20. */
  21. export const removeCache = (cacheArr) => {
  22. if (!Array.isArray(cacheArr)) {
  23. return
  24. }
  25. for (const item of cacheArr) {
  26. uni.removeStorageSync(item)
  27. }
  28. }
  29. /**
  30. * 检测登录是否有效
  31. */
  32. export const checkWhoami = () => {
  33. new Promise(async (resolve, reject) => {
  34. const userId = getUserId()
  35. const res = await whoami(userId)
  36. if (res.errno !== 0) {
  37. uni.navigateTo({
  38. url: '/pages/login/login'
  39. })
  40. }
  41. })
  42. }
  43. /**
  44. * 获取用户userid
  45. * @returns
  46. */
  47. export const getUserId = () => {
  48. const userId = uni.getStorageSync(USER_ID)
  49. if (!userId) {
  50. // uni.showToast({
  51. // title: "登录已失效,请重新登录",
  52. // duration: 2000,
  53. // icon: "none",
  54. // });
  55. // uni.navigateTo({
  56. // url: "/pages/login/login",
  57. // });
  58. uni.showModal({
  59. title: '提示',
  60. content: '您还未登录,是否去登录?',
  61. success(res) {
  62. if (res.confirm) {
  63. uni.navigateTo({
  64. url: '/pages/login/login'
  65. })
  66. } else if (res.cancel) {
  67. // uni.navigateBack();
  68. }
  69. }
  70. })
  71. return
  72. }
  73. return userId
  74. }
  75. /**
  76. * 获取新团蜂用户id
  77. * @returns
  78. */
  79. export const getStorageUserId = () => {
  80. const userInfo = uni.getStorageSync(T_STORAGE_KEY) || {}
  81. if (!userInfo.buyerUserId) {
  82. uni.showModal({
  83. title: '提示',
  84. content: '您还未登录,是否去登录?',
  85. success(res) {
  86. if (res.confirm) {
  87. uni.navigateTo({
  88. url: '/pages/login/login'
  89. })
  90. } else if (res.cancel) {
  91. // uni.navigateBack();
  92. }
  93. }
  94. })
  95. return
  96. }
  97. return userInfo.buyerUserId
  98. }
  99. /**
  100. * 获取新团蜂token
  101. * @returns
  102. */
  103. export const getStorageKeyToken = () => {
  104. const userInfo = uni.getStorageSync(USER_INFO)
  105. if (!userInfo || !userInfo.userId) {
  106. uni.showModal({
  107. title: '提示',
  108. content: '您还未登录,是否去登录?',
  109. success(res) {
  110. if (res.confirm) {
  111. uni.navigateTo({
  112. url: '/pages/login/login'
  113. })
  114. } else if (res.cancel) {
  115. // uni.navigateBack();
  116. }
  117. }
  118. })
  119. return
  120. }
  121. if (!userInfo || !userInfo.phone) {
  122. uni.showModal({
  123. title: '提示',
  124. content: '未绑定手机号码,是否去绑定?',
  125. success(res) {
  126. if (res.confirm) {
  127. uni.switchTab({
  128. url: '/pages/index/index'
  129. })
  130. } else if (res.cancel) {
  131. // uni.navigateBack();
  132. }
  133. }
  134. })
  135. return
  136. }
  137. const storageKey = uni.getStorageSync(T_STORAGE_KEY)
  138. if (!storageKey || !storageKey.token) {
  139. uni.showModal({
  140. title: '提示',
  141. content: '系统出错,请重新登陆',
  142. success(res) {
  143. if (res.confirm) {
  144. uni.navigateTo({
  145. url: '/pages/login/login'
  146. })
  147. } else if (res.cancel) {
  148. // uni.navigateBack();
  149. }
  150. }
  151. })
  152. return
  153. }
  154. return storageKey.token
  155. }
  156. /**
  157. * 跳转到新团蜂入驻端项目
  158. * @returns
  159. */
  160. export const jumpToOtherProject = (url, cb = () => { }) => {
  161. // #ifdef H5
  162. window.location.href = url
  163. // #endif
  164. // #ifdef APP
  165. plus.runtime.openURL(url, cb)
  166. // #endif
  167. // #ifdef MP
  168. uni.redirectTo({
  169. url: `/user/view?target=${url}`
  170. })
  171. // #endif
  172. }
  173. /**
  174. * 点击复制
  175. * @param {*} text
  176. */
  177. export const useCopy = (text) => {
  178. const input = document.createElement('input')
  179. input.value = text
  180. document.body.appendChild(input)
  181. input.select()
  182. document.execCommand('Copy')
  183. document.body.removeChild(input)
  184. uni.showToast({
  185. title: '单号复制成功'
  186. })
  187. }
  188. /**
  189. * @description 防抖函数
  190. * @param {*} func
  191. * @param {*} wait
  192. * @param {*} immediate
  193. * @returns
  194. */
  195. export function handleDebounce(func, wait, immediate) {
  196. let timeout
  197. return function () {
  198. const context = this
  199. const args = arguments
  200. if (timeout) clearTimeout(timeout)
  201. if (immediate) {
  202. var callNow = !timeout
  203. timeout = setTimeout(() => {
  204. timeout = null
  205. }, wait)
  206. if (callNow) func.apply(context, args)
  207. } else {
  208. timeout = setTimeout(function () {
  209. func.apply(context, args)
  210. }, wait)
  211. }
  212. }
  213. }
  214. export function getRandom(min, max) {
  215. return Math.floor(Math.random() * (max - min) + min)
  216. }
  217. export const randomRGB = () => {
  218. const r = Math.floor(Math.random() * 255)
  219. const g = Math.floor(Math.random() * 255)
  220. const b = Math.floor(Math.random() * 255)
  221. return `rgb(${r}, ${g}, ${b})`
  222. }
  223. export const timestampToTime = (timestamp) => {
  224. // 时间戳为10位需*1000,时间戳为13位不需乘1000
  225. // var date = new Date(timestamp * 1000);
  226. var date = new Date(timestamp)
  227. var Y = date.getFullYear() + '-'
  228. var M = (date.getMonth() + 1 < 10 ? '0' + (date.getMonth() + 1) : date.getMonth() + 1) + '-'
  229. var D = (date.getDate() < 10 ? '0' + date.getDate() : date.getDate()) + ' '
  230. var h = date.getHours() + ':'
  231. var m = date.getMinutes() + ':'
  232. var s = date.getSeconds()
  233. return Y + M + D + h + m + s
  234. // console.log(timestampToTime(1670145353)); //2022-12-04 17:15:53
  235. }
  236. /**
  237. * 时间格式化
  238. */
  239. export const timeFormatting = (timeDifference) => {
  240. // 天数
  241. const day = Math.floor(timeDifference / 3600 / 24)
  242. // 小时
  243. const hr = Math.floor(timeDifference / 3600 % 24)
  244. // 分钟
  245. const min = Math.floor(timeDifference / 60 % 60)
  246. // 秒
  247. const sec = Math.floor(timeDifference % 60)
  248. return {
  249. day: day < 10 ? '0' + day : day,
  250. hour: hr < 10 ? '0' + hr : hr,
  251. min: min < 10 ? '0' + min : min,
  252. sec: sec < 10 ? '0' + sec : sec
  253. }
  254. }
  255. export const throttle = (fn, interval) => {
  256. let lastTime = 0
  257. const _throttle = function (...args) {
  258. const nowTime = new Date().getTime()
  259. const remainTime = interval - (nowTime - lastTime)
  260. if (remainTime <= 0) {
  261. fn.apply(this, args)
  262. lastTime = nowTime
  263. }
  264. }
  265. return _throttle
  266. }
  267. // 获取 微信 code
  268. // #ifdef H5
  269. export const getUrlCode = () => {
  270. var url = location.search
  271. var theRequest = new Object()
  272. if (url.indexOf('?') != -1) {
  273. var str = url.substr(1)
  274. var strs = str.split('&')
  275. for (var i = 0; i < strs.length; i++) {
  276. theRequest[strs[i].split('=')[0]] = strs[i].split('=')[1]
  277. }
  278. }
  279. console.log('code结果', theRequest)
  280. return theRequest
  281. }
  282. // #endif
  283. // 判断当前是否处于微信环境
  284. export const isInWx = () => {
  285. // #ifdef H5
  286. var ua = navigator.userAgent.toLowerCase()
  287. return ua.match(/MicroMessenger/i) == 'micromessenger'
  288. // #endif
  289. // #ifdef APP
  290. return false
  291. // #endif
  292. }
  293. /**
  294. * 大数转小数 12345.123 = 1.23万
  295. */
  296. export const convertToDecimal = (number) => {
  297. if (!number || isNull(number)) return 0
  298. if (number < 10000) {
  299. return number.toString()
  300. } else if (number < 100000000) {
  301. const decimalNumber = (number / 10000).toFixed(2)
  302. return decimalNumber + '万'
  303. }
  304. const decimalNumber = (number / 100000000).toFixed(2)
  305. return decimalNumber + '亿'
  306. }
  307. export const isSubarray = (arr, subarr) => {
  308. const mainSet = new Set(arr)
  309. for (const element of subarr) {
  310. if (!mainSet.has(element)) {
  311. return false
  312. }
  313. }
  314. return true
  315. }
  316. export const tradeOrderNo = function () {
  317. const now = new Date()
  318. const year = now.getFullYear()
  319. let month = now.getMonth() + 1
  320. let day = now.getDate()
  321. let hour = now.getHours()
  322. let minutes = now.getMinutes()
  323. let seconds = now.getSeconds()
  324. String(month).length < 2 ? month = Number('0' + month) : month
  325. String(day).length < 2 ? day = Number('0' + day) : day
  326. String(hour).length < 2 ? hour = Number('0' + hour) : hour
  327. String(minutes).length < 2 ? minutes = Number('0' + minutes) : minutes
  328. String(seconds).length < 2 ? seconds = Number('0' + seconds) : seconds
  329. const yyyyMMddHHmmss = `${year}${month}${day}${hour}${minutes}${seconds}`
  330. return yyyyMMddHHmmss + Math.random().toString(36)
  331. .substr(2, 9)
  332. }
  333. /**
  334. * 判断当前H5是否在webview中打开
  335. */
  336. export const isH5InWebview = () => {
  337. const ua = navigator.userAgent.toLowerCase()
  338. return typeof ua === 'string' && (ua.includes('webview') || ua.includes('miniprogramhtmlwebview'))
  339. }
  340. /**
  341. * 判断当前资源是否是视频格式
  342. * @param {string} url
  343. * @returns {boolean}
  344. */
  345. // export function isVideo(url) {
  346. // // ['png', 'jpg', 'jpeg', 'bmp', 'gif','webp'] ['mp4', 'm2v', 'mkv', 'webm', 'ogg', 'flv']
  347. // const videoExtensions = ['.avi', '.wmv', '.mpg', '.mpeg', '.mov', '.rm', '.ram', '.swf', '.flv', '.mp4']
  348. // const lowercasedUrl = url.toLowerCase()
  349. // return videoExtensions.some(type => lowercasedUrl.includes(type))
  350. // }
  351. export function isVideoSource(src) {
  352. // return ['.avi', '.wmv', '.mpg', '.mpeg', '.mov', '.rm', '.ram', '.swf', '.flv', '.mp4'].some((item) => src.indexOf(item) !== -1)
  353. return ['.avi', '.wmv', '.mpg', '.mpeg', '.mov', '.rm', '.ram', '.swf', '.flv', '.mp4'].includes(src.substring(src.lastIndexOf('.')))
  354. }
  355. export const saveImg = (url, cb) => {
  356. // #ifdef H5
  357. if (isInWx()) {
  358. uni.showToast({
  359. title: '请长按图片保存',
  360. duration: 2000,
  361. icon: 'none'
  362. })
  363. } else {
  364. const uniappA = document.createElement('a')
  365. uniappA.download = ''
  366. uniappA.href = url
  367. document.body.appendChild(uniappA)
  368. uniappA.click()
  369. uniappA.remove()
  370. cb && typeof cb === 'function' && cb()
  371. }
  372. // #endif
  373. // #ifdef APP || MP
  374. uni.saveImageToPhotosAlbum({
  375. filePath: url,
  376. success() {
  377. cb && typeof cb === 'function' && cb()
  378. }
  379. })
  380. // #endif
  381. }