main.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. import Vue from 'vue'
  2. import App from './App'
  3. import uView from 'uview-ui'
  4. Vue.use(uView)
  5. Vue.config.productionTip = false
  6. import store from './store'
  7. import _ from 'lodash'
  8. import globalMixin from './mixins/global'
  9. import { jump, jumpToTabbar, goBack, getJumpParam } from './utils/jumpUtil'
  10. Vue.mixin({
  11. data() {
  12. return {
  13. baseUrl: 'https://adminapi.jfcmei.com/admin/storage/fetch/',
  14. lazyLoadingMode: 'skeleton-2',
  15. common: {
  16. // 拼接展示图片url
  17. // splicingImgUrl() {
  18. // return 'https://adminapi.jfcmei.com/admin/storage/fetch/'
  19. // },
  20. seamingImgUrl(url) {
  21. if (!url) return ''
  22. // return url.startsWith('https://') ? url : 'https://adminapi.jfcmei.com/admin/storage/fetch/' + url
  23. return url.startsWith('https://') ? url : 'https://jufeng-shop-1317254189.cos.ap-guangzhou.myqcloud.com/' + url
  24. },
  25. explainMembership(roleIds) {
  26. let roleName
  27. switch (roleIds) {
  28. case 1:
  29. roleName = '超级管理员'
  30. break
  31. case 2:
  32. roleName = '分公司管理员'
  33. break
  34. case 3:
  35. roleName = '高级营销策划师'
  36. break
  37. case 4:
  38. roleName = '初级营销策划师'
  39. break
  40. case 5:
  41. roleName = '普通营销策划师'
  42. break
  43. case 6:
  44. roleName = '会员商户'
  45. break
  46. case 7:
  47. roleName = '普通商户'
  48. break
  49. case 8:
  50. roleName = '商户高级业务员'
  51. break
  52. case 9:
  53. roleName = '商户初级业务员'
  54. break
  55. case 10:
  56. roleName = '普通会员'
  57. break
  58. case 11:
  59. roleName = '游客'
  60. break
  61. case 12:
  62. roleName = '推广管理员'
  63. break
  64. case 13:
  65. roleName = '商场管理员'
  66. break
  67. default:
  68. roleName = '未知会员类型'
  69. break
  70. }
  71. return roleName
  72. }
  73. }
  74. }
  75. },
  76. methods: {
  77. $showToast(text, icon) {
  78. uni.showToast({
  79. title: text,
  80. duration: 2000,
  81. icon: icon || 'none'
  82. })
  83. },
  84. go(url) {
  85. if (!url) {
  86. return
  87. }
  88. uni.navigateTo({
  89. url
  90. })
  91. },
  92. $copy(text, title = '复制成功') {
  93. uni.setClipboardData({
  94. data: text,
  95. success: () => {
  96. uni.showToast({
  97. title
  98. })
  99. }
  100. })
  101. },
  102. $switchTab(url) {
  103. if (!url) return
  104. uni.switchTab({ url })
  105. }
  106. }
  107. })
  108. Vue.prototype.$store = store
  109. Vue.prototype.$lodash = _
  110. Vue.prototype.$jump = jump
  111. Vue.prototype.$jumpToTabbar = jumpToTabbar
  112. Vue.prototype.$goBack = goBack
  113. Vue.prototype.$getJumpParam = getJumpParam
  114. Vue.use(globalMixin)
  115. App.mpType = 'app'
  116. const app = new Vue({
  117. ...App
  118. })
  119. app.$mount()