main.js 2.6 KB

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