tabBar.vue 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <template>
  2. <view class="tabBar">
  3. <uv-tabbar :value="value" @change="gotoBar">
  4. <uv-tabbar-item class="txt" text="首页">
  5. <template v-slot:active-icon>
  6. <image class="icon" style="width: 36rpx;height: 36rpx;" src="../../static/tabbar/Fill 2.png"></image>
  7. </template>
  8. <template v-slot:inactive-icon>
  9. <image class="icon" style="width: 36rpx;height: 36rpx;" src="../../static/tabbar/Fill 1.png"></image>
  10. </template>
  11. </uv-tabbar-item>
  12. <uv-tabbar-item text="资源库">
  13. <template v-slot:active-icon>
  14. <image class="icon" style="width: 40rpx;height: 32rpx;" src="/static/tabbar/zyk2.png"></image>
  15. </template>
  16. <template v-slot:inactive-icon>
  17. <image class="icon" style="width: 40rpx;height: 32rpx;" src="/static/tabbar/zyk.png"></image>
  18. </template>
  19. </uv-tabbar-item>
  20. <uv-tabbar-item text="活动">
  21. <template v-slot:active-icon>
  22. <image class="icon" style="width: 40rpx;height: 40rpx;" src="/static/tabbar/hd2.png"></image>
  23. </template>
  24. <template v-slot:inactive-icon>
  25. <image class="icon" style="width: 40rpx;height: 40rpx;" src="/static/tabbar/hd.png"></image>
  26. </template>
  27. </uv-tabbar-item>
  28. <uv-tabbar-item text="消息">
  29. <template v-slot:active-icon>
  30. <image class="icon" style="width: 38rpx;height: 34rpx;" src="/static/tabbar/xx2.png"></image>
  31. </template>
  32. <template v-slot:inactive-icon>
  33. <image class="icon" style="width: 38rpx;height: 34rpx;" src="/static/tabbar/xx.png"></image>
  34. </template>
  35. </uv-tabbar-item>
  36. <uv-tabbar-item text="我的">
  37. <template v-slot:active-icon>
  38. <image class="icon" style="width: 34rpx;height: 38rpx;" src="/static/tabbar/wd2.png"></image>
  39. </template>
  40. <template v-slot:inactive-icon>
  41. <image class="icon" style="width: 34rpx;height: 38rpx;" src="/static/tabbar/wd.png"></image>
  42. </template>
  43. </uv-tabbar-item>
  44. </uv-tabbar>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. name:"tabBar",
  50. data() {
  51. return {
  52. value: 0
  53. };
  54. },
  55. methods:{
  56. gotoBar(e){
  57. // this.value=index
  58. console.log(e);
  59. switch(e){
  60. case 0:
  61. uni.switchTab({
  62. url:'/pages/index/index'
  63. })
  64. break;
  65. case 1:
  66. uni.switchTab({
  67. url:'/pages/resource/resource'
  68. })
  69. break;
  70. case 2:
  71. uni.switchTab({
  72. url:'/pages/activityPage/activityPage'
  73. })
  74. break;
  75. case 3:
  76. uni.switchTab({
  77. url:'/pages/message/message'
  78. })
  79. break;
  80. default:
  81. uni.switchTab({
  82. url:'/pages/mine/mine'
  83. })
  84. break;
  85. }
  86. }
  87. }
  88. }
  89. </script>
  90. <style lang="scss">
  91. .tabBar{
  92. // position: fixed;
  93. .icon {
  94. width: 36rpx;
  95. height: 36rpx;
  96. }
  97. /deep/ .uni-tabbar__label{
  98. font-size: 100rpx !important;
  99. font-weight: 400;
  100. line-height: 24rpx;
  101. }
  102. }
  103. </style>