tabler.vue 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <template>
  2. <!-- 底部导航 -->
  3. <view class="tabbar" :style="{'padding-bottom': paddingBottomHeight + 'rpx'}">
  4. <view class="tabbar-item" v-for="(item, index) in list" :key="index" @click="tabbarChange(item.path)">
  5. <image class="item-img" :src="item.iconPath" v-if="current == index"></image>
  6. <image class="item-img1" :src="item.icon" v-else></image>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. props: {
  13. current: String
  14. },
  15. data() {
  16. return {
  17. paddingBottomHeight: 0, //苹果X以上手机底部适配高度
  18. list: [{
  19. text: '', //首页
  20. icon: '/static/tabbar/index.png', //未选中图标
  21. iconPath: '/static/tabbar/indexSelected.png', //选中图片
  22. path: "/pages/index/indexx", //页面路径
  23. },
  24. {
  25. text: '', //喜欢
  26. icon: '/static/tabbar/like.png',
  27. iconPath: '/static/tabbar/likeSelected.png',
  28. path: "/pages/like/like/like",
  29. },
  30. {
  31. text: '', //通知
  32. icon: '/static/tabbar/notice.png',
  33. iconPath: '/static/tabbar/noticeSelected.png',
  34. path: '/pages/notice/notice/notice',
  35. },
  36. {
  37. text: '', //我的
  38. icon: '/static/tabbar/my.png',
  39. iconPath: '/static/tabbar/mySelected.png',
  40. path: "/pages/my/my/my",
  41. }
  42. ]
  43. };
  44. },
  45. created() {
  46. let that = this;
  47. uni.getSystemInfo({
  48. success: function(res) {
  49. let model = ['X', 'XR', 'XS', '11', '12', '13', '14', '15'];
  50. model.forEach(item => {
  51. //适配iphoneX以上的底部,给tabbar一定高度的padding-bottom
  52. if (res.model.indexOf(item) != -1 && res.model.indexOf('iPhone') != -1) {
  53. that.paddingBottomHeight = 40;
  54. }
  55. })
  56. }
  57. });
  58. },
  59. watch: {
  60. },
  61. methods: {
  62. tabbarChange(path) {
  63. uni.switchTab({
  64. url: path
  65. })
  66. }
  67. }
  68. };
  69. </script>
  70. <style scoped>
  71. .tabbarActive {
  72. color: #79D5AD !important;
  73. }
  74. .tabbar {
  75. position: fixed;
  76. bottom: 48rpx;
  77. left: 45rpx;
  78. right: 30rpx;
  79. display: flex;
  80. justify-content: space-around;
  81. align-items: center;
  82. width: 600rpx;
  83. height: 126rpx;
  84. border-radius: 100rpx;
  85. background-color: #F5F6F7;
  86. padding: 0 30rpx;
  87. z-index: 99;
  88. }
  89. .tabbar-item {
  90. display: flex;
  91. flex-direction: column;
  92. align-items: center;
  93. justify-content: center;
  94. height: 100rpx;
  95. }
  96. /* 选中后 */
  97. .item-img {
  98. width: 104rpx;
  99. height: 104rpx;
  100. border-radius: 50%;
  101. box-shadow: 0rpx 0rpx 10rpx 10rpx #EEEFF0;
  102. }
  103. /* 选中前 */
  104. .item-img1 {
  105. width: 50rpx;
  106. height: 50rpx;
  107. }
  108. </style>
  109. ————————————————
  110. 版权声明:本文为CSDN博主「lmy云棉」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
  111. 原文链接:https://blog.csdn.net/weixin_43340308/article/details/127055272