tabBar.vue 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. <template>
  2. <view class="uni-tabbar">
  3. <view class="uni-tabbar__item" v-for="(item,index) in tabbar" :key="index" @tap="changeTab(item)">
  4. <view class="uni-tabbar__bd">
  5. <view class="uni-tabbar__icon">
  6. <image v-if="item.pagePath == pagePath" class="icon-img" mode="aspectFit" :src="item.selectedIconPath"></image>
  7. <image v-else class="icon-img" mode="aspectFit" :src="item.iconPath"></image>
  8. </view>
  9. </view>
  10. <view class="uni-tabbar__label" :class="{'active': item.pagePath == pagePath}">
  11. {{item.text}}
  12. </view>
  13. </view>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. props: {
  19. pagePath: String
  20. },
  21. data() {
  22. return {
  23. page: 'contact',
  24. showPage: false,
  25. containerHeight: 400,
  26. tabbar: [
  27. //动态切换的菜单,先隐藏,动态插入
  28. {
  29. pagePath: "/pages/index/index",
  30. iconPath: "/static/img/index_active.png",
  31. selectedIconPath: "/static/img/index.png",
  32. text: "活动详情"
  33. },
  34. {
  35. pagePath: "/pages/index/guide",
  36. iconPath: "/static/img/guide_active.png",
  37. selectedIconPath: "/static/img/guide.png",
  38. text: "操作指南"
  39. },
  40. {
  41. pagePath: "/pages/index/calendar",
  42. iconPath: "/static/img/calendar_acitve.png",
  43. selectedIconPath: "/static/img/calendar.png",
  44. text: " "
  45. },
  46. {
  47. pagePath: "/pages/index/my",
  48. iconPath: "/static/img/my_acitve.png",
  49. selectedIconPath: "/static/img/my.png",
  50. text: "个人中心"
  51. }
  52. ]
  53. };
  54. },
  55. watch: {
  56. pagePath: {
  57. handler(val) {
  58. console.log('pagePath监听===val', val)
  59. },
  60. immediate: true
  61. }
  62. },
  63. mounted() {
  64. if(uni.getStorageSync('doctorAndSpecialist')==2){
  65. this.tabbar.splice(2, 1,
  66. {
  67. pagePath: "/pages/index/calendarExpert",
  68. iconPath: "/static/img/calendar_acitve.png",
  69. selectedIconPath: "/static/img/calendar.png",
  70. text: "病历审核"
  71. })
  72. }else{
  73. this.tabbar.splice(2, 1,
  74. {
  75. pagePath: "/pages/index/calendar",
  76. iconPath: "/static/img/calendar_acitve.png",
  77. selectedIconPath: "/static/img/calendar.png",
  78. text: "数据中心"
  79. },)
  80. }
  81. },
  82. methods: {
  83. changeTab(item) {
  84. this.page = item.pagePath;
  85. // 使用reLaunch关闭所有的页面,打开新的栏目页面
  86. uni.reLaunch({
  87. url: this.page
  88. });
  89. },
  90. }
  91. }
  92. </script>
  93. <style lang="scss" scoped>
  94. .uni-tabbar {
  95. position: fixed;
  96. bottom: 0;
  97. left: 0;
  98. z-index: 999;
  99. width: 100%;
  100. display: flex;
  101. justify-content: space-around;
  102. padding: 16rpx 0;
  103. box-sizing: border-box;
  104. background-color: #fff;
  105. // box-shadow: 0px 0px 17rpx 1rpx rgba(206, 206, 206, 0.32);
  106. padding-bottom: 20rpx;
  107. .uni-tabbar__item {
  108. display: block;
  109. line-height: 24rpx;
  110. font-size: 20rpx;
  111. text-align: center;
  112. width: 25%;
  113. }
  114. .uni-tabbar__icon {
  115. height: 24px;
  116. line-height: 24px;
  117. text-align: center;
  118. }
  119. .icon {
  120. display: inline-block;
  121. }
  122. .uni-tabbar__label {
  123. margin-top: 14rpx;
  124. line-height: 24rpx;
  125. font-size: 24rpx;
  126. color: #999;
  127. &.active {
  128. color: #1ca6ec;
  129. }
  130. }
  131. .icon-img {
  132. height: 24px;
  133. width: 24px;
  134. }
  135. }
  136. </style>