App.vue 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <template>
  2. <div class="af-entry">
  3. <keep-alive>
  4. <router-view v-if="$route.meta.keepAlive"></router-view>
  5. </keep-alive>
  6. <router-view v-if="!$route.meta.keepAlive"></router-view>
  7. <van-tabbar
  8. class="af-entry-tabbar"
  9. v-model="activeTab"
  10. :placeholder="true"
  11. v-show="$route.meta.isUseVanTabbar"
  12. @change="onChange">
  13. <van-tabbar-item
  14. name="PlaceList"
  15. icon="wap-home-o">订座
  16. </van-tabbar-item>
  17. <van-tabbar-item
  18. name="PlaceReserve"
  19. icon="user-o">我的订座
  20. </van-tabbar-item>
  21. </van-tabbar>
  22. </div>
  23. </template>
  24. <script>
  25. import { Tabbar, TabbarItem } from 'vant'
  26. import { WxConfig } from './utils/wxConfig'
  27. export default {
  28. name: 'App',
  29. components: {
  30. 'van-tabbar': Tabbar,
  31. 'van-tabbar-item': TabbarItem
  32. },
  33. data () {
  34. return {
  35. activeTab: 'PlaceList'
  36. }
  37. },
  38. watch: {
  39. '$route.name': {
  40. handler: function (newVal) {
  41. this.activeTab = newVal
  42. },
  43. immediate: true
  44. }
  45. },
  46. async created () {
  47. console.log(WxConfig())
  48. await this.$store.dispatch('common/fetchBarList')
  49. },
  50. mounted () {
  51. const routeName = this.$route.name
  52. this.activeTab = ['PlaceList', 'PlaceReserve'].findIndex(item => item === routeName) > -1 ? routeName : ''
  53. },
  54. methods: {
  55. onChange (routeName) {
  56. this.$router.replace({ name: routeName })
  57. }
  58. }
  59. }
  60. </script>
  61. <style lang="scss">
  62. @import "./assets/styles/reset";
  63. .clearfix {
  64. display: inline-block;
  65. &:after {
  66. display: block;
  67. content: ".";
  68. height: 0;
  69. line-height: 0;
  70. clear: both;
  71. visibility: hidden;
  72. }
  73. }
  74. .af-entry {
  75. height: 100%;
  76. overflow-y: scroll;
  77. -webkit-overflow-scrolling: touch;
  78. background: #F2F2F2;
  79. &-tabbar {
  80. .van-tabbar--fixed {
  81. box-shadow: 0px -2px 4px 0px rgba(13, 13, 13, 0.03);
  82. }
  83. }
  84. }
  85. </style>