index.js 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. import Vue from 'vue'
  2. import store from '../store'
  3. import { getQueryString } from '@/utils/getQueryString'
  4. import { platform } from '@/utils/platform'
  5. /**
  6. * 清除登录信息
  7. */
  8. export function clearLoginInfo () {
  9. Vue.cookie.delete('phone')
  10. Vue.cookie.delete('token')
  11. store.commit('common/UPDATE_PHONE', '')
  12. store.commit('common/UPDATE_TOKEN', '')
  13. }
  14. export function clearStore () {
  15. store.commit('resetStore')
  16. }
  17. export function fen2Yuan (num) {
  18. return isNaN(num) ? '' : (num * 0.01).toFixed(2)
  19. }
  20. export function yuan2Fen (num) {
  21. if (isNaN(num)) {
  22. return ''
  23. }
  24. const amount = num.toString()
  25. const index = amount.indexOf('.')
  26. const arr = amount.split('.')
  27. let result = arr[0] * 100
  28. if (index > -1) {
  29. result += arr[1].split('').reduce((total, cur, index) => {
  30. if (index === 0) {
  31. return total + cur * 10
  32. } else {
  33. return total + cur * 1
  34. }
  35. }, 0)
  36. }
  37. return result
  38. }
  39. export function getCookieValue (name) {
  40. return Object.prototype.toString.call(Vue.cookie.get(name)) === '[object Null]' ? '' : Vue.cookie.get(name)
  41. }
  42. /**
  43. * 获取wechatToken,只有在微信内才有这个参数
  44. */
  45. export function updateWechatToken () {
  46. const wechatToken = getQueryString('wechatToken') || ''
  47. if (wechatToken && platform.isWeixin) {
  48. Vue.cookie.set('fanbutingwechatToken', wechatToken, { expires: '30D' })
  49. setTimeout(() => {
  50. location.replace(`${location.href.replace('wechatToken=' + wechatToken, '')}`)
  51. }, 500)
  52. }
  53. }
  54. /**
  55. * 获取邀请人ID
  56. */
  57. export function updateInviteId () {
  58. const inviteId = getQueryString('invite_id') || ''
  59. if (inviteId) {
  60. store.commit('common/UPDATE_INVITE_ID', inviteId)
  61. }
  62. }
  63. /**
  64. * 数组展平
  65. * @param arr 原始数组
  66. * @returns {[]}
  67. */
  68. export function formatArray (arr) {
  69. let result = []
  70. let i = 0
  71. if (Array.isArray(arr)) {
  72. while (i < arr.length) {
  73. if (Array.isArray(arr[i])) {
  74. result = result.concat(formatArray(arr[i]))
  75. } else {
  76. result.push(arr[i])
  77. }
  78. i++
  79. }
  80. }
  81. return result
  82. }
  83. /**
  84. * 判断微信是否支持:微信版本要求为:7.0.12及以上。 系统版本要求为:iOS 10.3及以上、Android 5.0及以上
  85. * @returns {boolean}
  86. */
  87. export function isSupportJumpWXmini () {
  88. const wechat = navigator.userAgent.match(/MicroMessenger\/([\d\.]+)/i)
  89. let result = false
  90. if (wechat) {
  91. const judgewechat = wechat[1].split('.')
  92. if (judgewechat[0] >= 7) {
  93. if (judgewechat[1] >= 0) {
  94. if (judgewechat[2] >= 12) {
  95. result = true
  96. }
  97. }
  98. }
  99. }
  100. return result
  101. }