main.js 1.3 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. //http://112.124.69.194:93/#/ 测试地址
  10. console.log("main.js")
  11. if(common.getHashQuery('token')){
  12. var userInfo={
  13. token:common.getHashQuery('token'),
  14. uid:common.getHashQuery('uid')
  15. }
  16. var wxOpenData={
  17. loginInfo:userInfo
  18. }
  19. store.commit('mutationsuserInfo', userInfo)
  20. store.commit('mutationswxOpenData', wxOpenData)
  21. uni.setStorage({
  22. key: 'wxOpenData',
  23. data: wxOpenData,
  24. success: function () {
  25. }
  26. });
  27. console.log(store.state.userInfo)
  28. }
  29. if(common.getHashQuery('quanxian')){
  30. console.log(common.getHashQuery('quanxian'));
  31. uni.setStorage({
  32. key: 'quanxian',
  33. data: common.getHashQuery('quanxian'),
  34. success: function () { }
  35. });
  36. }
  37. //console.log(common.getHashQuery('token'))
  38. // #ifndef VUE3
  39. import Vue from 'vue'
  40. Vue.config.productionTip = false
  41. App.mpType = 'app'
  42. const app = new Vue({
  43. ...App
  44. })
  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