main.js 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. import url from "./common/url.js"
  9. import share from './utils/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. return true
  20. } else {
  21. return false
  22. }
  23. }
  24. Vue.prototype.$amapPlugin = new amap.AMapWX({
  25. key: '537ed0efe961d9a3b90d9a2d2f775e1f'
  26. });
  27. Vue.prototype.$url = url
  28. Vue.config.productionTip = false
  29. App.mpType = 'app'
  30. const app = new Vue({
  31. store,
  32. ...App
  33. })
  34. // #ifdef MP-WEIXIN
  35. import WebIM from "./common/wss.js"
  36. Vue.use(WebIM, app)
  37. // #endif
  38. // http拦截器,此为需要加入的内容,如果不是写在common目录,请自行修改引入路径
  39. import httpInterceptor from '@/common/http.interceptor.js'
  40. // 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例)
  41. Vue.use(httpInterceptor, app)
  42. app.$mount()
  43. // #endif
  44. // #ifdef VUE3
  45. import { createSSRApp } from 'vue'
  46. export function createApp() {
  47. const app = createSSRApp(App)
  48. return {
  49. app
  50. }
  51. }
  52. // #endif