index.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <template>
  2. <van-tabbar :value="tabbarActive" @change="handleTabbarChange" route>
  3. <van-tabbar-item v-for="(item, idx) in tabbarList" :key="idx" :to="item.to" replace>
  4. <span>{{ item.title }}</span>
  5. <template #icon="props">
  6. <img v-if="props.active" :src="item.iconSel" />
  7. <img v-else :src="item.icon" />
  8. </template>
  9. </van-tabbar-item>
  10. </van-tabbar>
  11. </template>
  12. <script>
  13. import { mapGetters } from 'vuex';
  14. export default {
  15. name: 'TabBar',
  16. computed: {
  17. ...mapGetters(['tabbarIdx'])
  18. },
  19. data() {
  20. return {
  21. tabbarActive: this.tabbarIdx,
  22. tabbarList: [
  23. {
  24. title: '首页',
  25. to: '/',
  26. icon: require("@/assets/icons-index.png"),
  27. iconSel: require("@/assets/icons-index-sel.png"),
  28. },
  29. {
  30. title: '审批',
  31. to: '/approve',
  32. icon: require("@/assets/icons-approve.png"),
  33. iconSel: require("@/assets/icons-approve-sel.png"),
  34. },
  35. {
  36. title: '我的',
  37. to: '/my',
  38. icon: require("@/assets/icons-my.png"),
  39. iconSel: require("@/assets/icons-my-sel.png"),
  40. },
  41. ]
  42. }
  43. },
  44. methods: {
  45. handleTabbarChange(index) {
  46. this.tabbarActive = index
  47. this.$store.commit({
  48. type: 'app/SET_TABBAR',
  49. tabbarIdx: index
  50. })
  51. }
  52. }
  53. }
  54. </script>