tabbar.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view class="TabBar">
  3. <view class="tab" v-for="(item,index) in TabBarList" :key="index" @tap="navigatorTo(item.url)">
  4. <!-- 判断是否有点击,如果没有就不是激活样式,点击就是激活的样式 -->
  5. <image class="imgsize" v-if="item.type !== 2" :src="current == index ? item.selectIcon : item.icon"
  6. mode="widthFix"></image>
  7. <!-- 设置一个状态值(type),判断加号是否展示 -->
  8. <image class="addimgsize" v-if="item.type == 2" :src="item.icon" mode="heightFix"></image>
  9. <view :class="current == index ?'active':'text'">{{item.name}}</view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. props: {
  16. current: {
  17. type: Number,
  18. default: 0, //默认第一个页面tabbar激活
  19. },
  20. },
  21. data() {
  22. return {
  23. TabBarList: [{
  24. type: 0,
  25. icon: '/static/foot-1.png',
  26. selectIcon: '/static/foot-1active.png',
  27. name: '首页',
  28. url: '/pages/index/index',
  29. }, {
  30. type: 1,
  31. icon: '/static/foot-2.png',
  32. selectIcon: '/static/foot-2active.png',
  33. name: '分类',
  34. url: '/pages/classification/classification',
  35. },
  36. {
  37. type: 2,
  38. icon: '/static/foot-3.png',
  39. url: '/pages/health-encyclopedia/health-encyclopedia',
  40. name: '康养百科',
  41. }, {
  42. type: 3,
  43. icon: '/static/foot-4.png',
  44. selectIcon: '/static/foot-4active.png',
  45. name: '购物车',
  46. url: '/pages/shopping-cart/shopping-cart',
  47. },
  48. {
  49. type: 4,
  50. icon: '/static/foot-5.png',
  51. selectIcon: '/static/foot-5active.png',
  52. name: '我的',
  53. url: '/pages/my/my',
  54. },
  55. ],
  56. }
  57. },
  58. methods: {
  59. navigatorTo(e) {
  60. uni.redirectTo({
  61. url: e,
  62. })
  63. },
  64. },
  65. }
  66. </script>
  67. <style scoped>
  68. .TabBar {
  69. width: 100%;
  70. height: 98rpx;
  71. position: fixed;
  72. bottom: 0;
  73. background: #fff;
  74. width: 100%;
  75. display: flex;
  76. justify-content: space-around;
  77. align-items: center;
  78. z-index: 100;
  79. box-sizing: border-box;
  80. border-top: 1px solid #EAEAEA;
  81. }
  82. .tab {
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. }
  87. .imgsize {
  88. width: 40rpx;
  89. height: 40rpx;
  90. }
  91. .addimgsize {
  92. width: 94rpx;
  93. height: 94rpx;
  94. margin-top: -50rpx;
  95. }
  96. .text {
  97. margin-top: 10rpx;
  98. font-size: 22rpx;
  99. color: #505050;
  100. line-height: 22rpx;
  101. }
  102. .active {
  103. margin-top: 10rpx;
  104. font-size: 22rpx;
  105. color: #F2501A;
  106. line-height: 22rpx;
  107. }
  108. </style>