common.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * @Author: zhuangzhou zhuangzhou@btioe.com
  3. * @Date: 2022-05-04 17:53:53
  4. * @LastEditors: zhuangzhou zhuangzhou@btioe.com
  5. * @LastEditTime: 2022-05-04 17:55:27
  6. * @FilePath: /mlmt-mini/src/utils/common.js
  7. * @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
  8. */
  9. import store from '@/store'
  10. import router from './router'
  11. export default {
  12. isString(str) {
  13. return typeof str === 'string'
  14. },
  15. isArray(array) {
  16. return Object.prototype.toString.call(array) === '[object Array]'
  17. },
  18. // 深拷贝
  19. deepCopy(source, target) {
  20. target = target || {}
  21. for (var i in source) {
  22. if (typeof source[i] === 'object') {
  23. target[i] = source[i].constructor === Array ? [] : {}
  24. util.deepCopy(source[i], target[i])
  25. } else {
  26. target[i] = source[i]
  27. }
  28. }
  29. return target
  30. },
  31. // 生成uuid
  32. guid() {
  33. function S4() {
  34. return (((1 + Math.random()) * 0x10000) | 0).toString(16).substring(1)
  35. }
  36. return S4() + S4() + '-' + S4() + '-' + S4() + '-' + S4() + '-' + S4() + S4() + S4()
  37. },
  38. isLogin() {
  39. return !!store.state.token
  40. },
  41. checkLogin() {
  42. if (!store.state.token) {
  43. uni.navigateTo({
  44. url: '/pages/login/index'
  45. })
  46. return false
  47. }
  48. return true
  49. },
  50. currentPage() {
  51. const pages = getCurrentPages()
  52. return pages[pages.length - 1]
  53. },
  54. copy(text) {
  55. uni.setClipboardData({
  56. data: text,
  57. success: function () {
  58. uni.showToast({
  59. title: '复制成功'
  60. })
  61. },
  62. fail: function (err) {
  63. console.log(err)
  64. uni.showToast({
  65. title: '复制失败'
  66. })
  67. }
  68. })
  69. },
  70. scrollTop() {
  71. uni.pageScrollTo({ scrollTop: 0, duration: 200 })
  72. },
  73. showNext(item) {
  74. console.log(item)
  75. if (!item.path || !item.path.schema || item.path.schema === 'none') return
  76. if (item.path.schema === 'h5' && item.path.url) {
  77. router.web(item.path.url)
  78. return
  79. }
  80. if (item.path.schema === 'native' && item.path.url == 'Page') {
  81. if (item.path.params.url.startsWith('mini:')) {
  82. let array = item.path.params.url.split(':')
  83. wx.navigateToMiniProgram({
  84. appId: array[1],
  85. path: array[2]
  86. })
  87. return
  88. }
  89. this.showNextByParam(item.path.params.url)
  90. // router.pushCheck(item.path.params.url)
  91. return
  92. }
  93. if (item.path.schema === 'method' && item.path.url == 'method') {
  94. this[item.path.params.method]()
  95. return
  96. }
  97. },
  98. showNextByParam(url) {
  99. const path = url.split('?')[0]
  100. const params = this.queryStringToObject(url.split('?')[1])
  101. console.log(path)
  102. console.log(params)
  103. if (path) {
  104. router.pushCheck(path, params)
  105. } else {
  106. console.log('未找到参数')
  107. }
  108. },
  109. queryStringToObject(queryString) {
  110. if(!queryString){
  111. return {}
  112. }
  113. const params = {}
  114. const pairs = queryString.split('&')
  115. for (let i = 0; i < pairs.length; i++) {
  116. const pair = pairs[i].split('=')
  117. params[pair[0]] = decodeURIComponent(pair[1])
  118. }
  119. return params
  120. },
  121. toAward() {
  122. router.switchTab('award')
  123. },
  124. getQueryObj(url) {
  125. if (url.indexOf('?') != -1) {
  126. let obj = {}
  127. let arr = url.slice(url.indexOf('?') + 1).split('&')
  128. arr.forEach((item) => {
  129. let param = item.split('=')
  130. obj[param[0]] = param[1]
  131. })
  132. return obj
  133. } else {
  134. return null
  135. }
  136. },
  137. compareVersion(v1, v2) {
  138. v1 = v1.split('.')
  139. v2 = v2.split('.')
  140. const len = Math.max(v1.length, v2.length)
  141. while (v1.length < len) {
  142. v1.push('0')
  143. }
  144. while (v2.length < len) {
  145. v2.push('0')
  146. }
  147. for (let i = 0; i < len; i++) {
  148. const num1 = parseInt(v1[i])
  149. const num2 = parseInt(v2[i])
  150. if (num1 > num2) {
  151. return 1
  152. } else if (num1 < num2) {
  153. return -1
  154. }
  155. }
  156. return 0
  157. },
  158. showKefu(title) {
  159. wx.openCustomerServiceChat({
  160. extInfo: { url: 'https://work.weixin.qq.com/kfid/kfca8c314f2305c7903' },
  161. corpId: 'ww5fb8760e92b10064',
  162. showMessageCard: !!title,
  163. sendMessageTitle: title,
  164. success(res) {}
  165. })
  166. },
  167. shuffle(arr) {
  168. var length = arr.length,
  169. randomIndex,
  170. temp
  171. while (length) {
  172. randomIndex = Math.floor(Math.random() * length--)
  173. temp = arr[randomIndex]
  174. arr[randomIndex] = arr[length]
  175. arr[length] = temp
  176. }
  177. return arr
  178. },
  179. ignoreRatio0(str) {
  180. if (typeof str === 'number') {
  181. str += ''
  182. }
  183. if (str === '0') return str
  184. if (str.indexOf('.') < 0) return str
  185. str += ''
  186. let temp = str.replace(/(0+)$/g, '')
  187. if (temp[temp.length - 1] === '.') {
  188. return temp.substr(0, temp.length - 1)
  189. }
  190. return temp
  191. }
  192. }