main.js 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. import App from './App'
  2. import common from '@/utils/common.js'
  3. Vue.prototype.$common =common
  4. import request from '@/utils/request.js'
  5. Vue.prototype.$http = request.http
  6. Vue.prototype.$request =request
  7. import store from './store'
  8. Vue.prototype.$store = store // 定义成全局组件
  9. console.log("main.js")
  10. if(common.getHashQuery('token')){
  11. var userInfo={
  12. token:common.getHashQuery('token'),
  13. uid:common.getHashQuery('uid')
  14. }
  15. var wxOpenData={
  16. loginInfo:userInfo
  17. }
  18. store.commit('mutationsuserInfo', userInfo)
  19. store.commit('mutationswxOpenData', wxOpenData)
  20. uni.setStorage({
  21. key: 'wxOpenData',
  22. data: wxOpenData,
  23. success: function () {
  24. }
  25. });
  26. console.log(store.state.userInfo)
  27. }
  28. //console.log(common.getHashQuery('token'))
  29. // #ifndef VUE3
  30. import Vue from 'vue'
  31. Vue.config.productionTip = false
  32. App.mpType = 'app'
  33. const app = new Vue({
  34. ...App
  35. })
  36. app.$mount()
  37. // #endif
  38. // #ifdef VUE3
  39. import { createSSRApp } from 'vue'
  40. export function createApp() {
  41. const app = createSSRApp(App)
  42. return {
  43. app
  44. }
  45. }
  46. // #endif