main.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. import Vue from 'vue'
  2. import App from './App'
  3. import uView from 'uview-ui'
  4. Vue.use(uView)
  5. import store from './store'
  6. import globalMixin from './mixin/global'
  7. Vue.config.productionTip = false
  8. // echar引入
  9. import * as echarts from 'echarts'
  10. Vue.prototype.$echarts = echarts
  11. Vue.prototype.$baseImgUrl = 'https://www.tuanfengkeji.cn:9527/dts-admin-api/admin/storage/fetch/'
  12. Vue.filter('replacestar', function (value) {
  13. if (!value) return ''
  14. let str = value
  15. str = str.replace(new RegExp('[^0-9]+', 'g'), '')
  16. if (str.length == 11) {
  17. str = str.toString().replace(/(\d{3})\d*(\d{4})/, '$1****$2')
  18. } else {
  19. str = str.toString().replace(/(\d{3})\d*(\d{4})/, '$1****$2')
  20. }
  21. return str
  22. })
  23. Vue.mixin({
  24. data() {
  25. return {
  26. common: {
  27. seamingImgUrl(url) {
  28. if (!url) return ''
  29. // return url.startsWith('https://') ? url : 'https://www.tuanfengkeji.cn:9527/dts-admin-api/admin/storage/fetch/' + url
  30. if (url.startsWith('http://')) {
  31. return url.replace('http://', 'https://')
  32. } else if (url.startsWith('https://')) {
  33. return url
  34. } else if (url.startsWith('//')) {
  35. return 'https:' + url
  36. }
  37. // https://tuanfengkeji.oss-cn-beijing.aliyuncs.com/tfshop/
  38. // https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/
  39. return 'https://tuanfengkeji.oss-cn-beijing.aliyuncs.com/tfshop/' + url
  40. }
  41. }
  42. }
  43. },
  44. methods: {
  45. setData(obj) {
  46. const that = this
  47. let keys = []
  48. let val, data
  49. Object.keys(obj).forEach(function (key) {
  50. keys = key.split('.')
  51. val = obj[key]
  52. data = that.$data
  53. keys.forEach(function (key2, index) {
  54. if (index + 1 == keys.length) {
  55. that.$set(data, key2, val)
  56. } else if (!data[key2]) {
  57. that.$set(data, key2, {})
  58. }
  59. data = data[key2]
  60. })
  61. })
  62. },
  63. $showToast(text, icon) {
  64. uni.showToast({
  65. title: text,
  66. duration: 2000,
  67. icon: icon || 'none'
  68. })
  69. },
  70. go(url, param) {
  71. if (!url) return
  72. if (param) url = `${url}?detail=${encodeURIComponent(JSON.stringify(param)?.replace(/%/g, '%25'))}`
  73. uni.navigateTo({
  74. url
  75. })
  76. },
  77. $getJumpParam(loadParam) {
  78. if (typeof loadParam === 'object' && loadParam?.detail) return JSON.parse(decodeURIComponent(loadParam.detail))
  79. return {}
  80. },
  81. $copy(text, title = '复制成功') {
  82. uni.setClipboardData({
  83. data: text,
  84. success: () => {
  85. uni.showToast({
  86. title
  87. })
  88. }
  89. })
  90. },
  91. $redirectTo(url) {
  92. if (!url) return
  93. uni.redirectTo({ url })
  94. },
  95. $switchTab(url) {
  96. if (!url) return
  97. uni.switchTab({ url })
  98. },
  99. getSize(selecter) {
  100. const _this = this
  101. return new Promise((resolve, reject) => {
  102. const query = uni.createSelectorQuery().in(_this)
  103. query
  104. .select(selecter)
  105. .boundingClientRect((data) => {
  106. resolve(data)
  107. })
  108. .exec()
  109. })
  110. },
  111. empty() {
  112. uni.showToast({
  113. title: '功能升级中...',
  114. icon: 'none'
  115. })
  116. },
  117. isLogin() {
  118. return !!(this.$store.getters.userInfo && this.$store.getters.userInfo.token)
  119. }
  120. }
  121. })
  122. Vue.use(globalMixin)
  123. Vue.config.ignoredElements.push('wx-open-launch-weapp')
  124. App.mpType = 'app'
  125. const app = new Vue({
  126. ...App,
  127. store
  128. })
  129. app.$mount()
  130. // import filters from './utils/filter' // 导入过滤器文件
  131. // Object.keys(filters).forEach((key) => {
  132. // // 通过Object.key方法取出过滤器中导出的每个方法并挂在vue.filter上
  133. // Vue.filter(key, filters[key])
  134. // })