App.vue 937 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <template>
  2. <div>
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive"/>
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive"/>
  7. </div>
  8. </template>
  9. <script>
  10. import { WxConfig } from './utils/wxConfig'
  11. import { platform } from './utils/platform'
  12. export default {
  13. name: 'App',
  14. data () {
  15. return {
  16. activeTab: ''
  17. }
  18. },
  19. watch: {
  20. '$route.name': {
  21. handler: function (newVal) {
  22. this.activeTab = newVal
  23. },
  24. immediate: true
  25. }
  26. },
  27. async created () {
  28. platform.isWeixin && WxConfig()
  29. this.$store.dispatch('common/getUserInfo')
  30. this.$store.dispatch('common/getOrdertype')
  31. }
  32. }
  33. </script>
  34. <style lang="scss">
  35. @import "./assets/styles/reset";
  36. body {
  37. background: #F7F6F9;
  38. }
  39. .clearfix {
  40. display: inline-block;
  41. &:after {
  42. display: block;
  43. content: ".";
  44. height: 0;
  45. line-height: 0;
  46. clear: both;
  47. visibility: hidden;
  48. }
  49. }
  50. </style>