main.js 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. if(common.getHashQuery('quanxian')){
  29. console.log(common.getHashQuery('quanxian'));
  30. uni.setStorage({
  31. key: 'quanxian',
  32. data: common.getHashQuery('quanxian'),
  33. success: function () { }
  34. });
  35. }
  36. //console.log(common.getHashQuery('token'))
  37. // #ifndef VUE3
  38. import Vue from 'vue'
  39. Vue.config.productionTip = false
  40. App.mpType = 'app'
  41. const app = new Vue({
  42. ...App
  43. })
  44. app.$mount()
  45. // #endif
  46. // #ifdef VUE3
  47. import { createSSRApp } from 'vue'
  48. export function createApp() {
  49. const app = createSSRApp(App)
  50. return {
  51. app
  52. }
  53. }
  54. // #endif