main.js 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. import App from './App'
  2. // #ifndef VUE3
  3. import Vue from 'vue'
  4. import './uni.promisify.adaptor'
  5. import store from './store'
  6. import uView from "uview-ui";
  7. import amap from './common/amap-wx.js';
  8. //分享
  9. import share from '@/common/share.js'
  10. Vue.mixin(share)
  11. Vue.use(uView);
  12. Vue.prototype.$store = store
  13. Vue.prototype.$islogin = function() {
  14. if (!uni.getStorageSync("token")) {
  15. uni.showToast({
  16. icon: "none",
  17. title: "请登录"
  18. })
  19. setTimeout(() => {
  20. uni.navigateTo({
  21. url: "/pages/mine/login"
  22. })
  23. }, 800)
  24. return true
  25. } else {
  26. return false
  27. }
  28. }
  29. Vue.prototype.$amapPlugin = new amap.AMapWX({
  30. key: '537ed0efe961d9a3b90d9a2d2f775e1f'
  31. });
  32. Vue.prototype.$color = ['#B620E0', '#FF6430', '#00B578', '#1677FF']
  33. Vue.config.productionTip = false
  34. App.mpType = 'app'
  35. const app = new Vue({
  36. store,
  37. ...App
  38. })
  39. import WebIM from "./common/wss.js"
  40. Vue.use(WebIM, app)
  41. // http拦截器,此为需要加入的内容,如果不是写在common目录,请自行修改引入路径
  42. import httpInterceptor from '@/common/http.interceptor.js'
  43. // 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例)
  44. Vue.use(httpInterceptor, app)
  45. app.$mount()
  46. // #endif
  47. // #ifdef VUE3
  48. import { createSSRApp } from 'vue'
  49. export function createApp() {
  50. const app = createSSRApp(App)
  51. return {
  52. app
  53. }
  54. }
  55. // #endif