index.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. <template>
  2. <view class="container">
  3. <view class="content" :class="tabValue">
  4. <course-home v-if="tabValue === 'courseHome'"></course-home>
  5. <course-mine v-if="tabValue === 'courseMine'"></course-mine>
  6. </view>
  7. <view class="tabbar-block"></view>
  8. <view class="tabbar">
  9. <view class="tab-item" :class="{ active: tabValue === 'courseHome' }" @click="selectTab('courseHome')">
  10. <image src="/static/tabbar-icon/home-fill.png" v-if="tabValue === 'courseHome'"></image>
  11. <image src="/static/tabbar-icon/home.png" v-else></image>
  12. <text>放映厅</text>
  13. </view>-
  14. <view class="tab-item" :class="{ active: tabValue === 'courseMine' }" @click="selectTab('courseMine')">
  15. <image src="/static/tabbar-icon/user-s.png" v-if="tabValue === 'courseMine'"></image>
  16. <image src="/static/tabbar-icon/user-line.png" v-else></image>
  17. <text>我的</text>
  18. </view>
  19. </view>
  20. </view>
  21. </template>
  22. <script>
  23. import courseHome from './component/courseHome/courseHome.vue';
  24. import courseMine from './component/courseMine/courseMine.vue';
  25. export default {
  26. data() {
  27. return {
  28. tabValue: 'courseHome', // 默认选中的 Tab
  29. };
  30. },
  31. components: {
  32. courseHome,
  33. courseMine,
  34. },
  35. methods: {
  36. selectTab(value) {
  37. this.tabValue = value; // 设置当前选中的 Tab
  38. },
  39. },
  40. };
  41. </script>
  42. <style scoped lang="scss">
  43. .container {
  44. display: flex;
  45. flex-direction: column;
  46. height: 100vh;
  47. }
  48. .content {
  49. flex: 1;
  50. /* 内容区填充剩余空间 */
  51. padding: 0 30rpx;
  52. /* 内边距 */
  53. }
  54. .courseHome {
  55. background-color: #fff;
  56. }
  57. .courseMine {
  58. background-color: #f7f7f7;
  59. }
  60. .tabbar-block {
  61. flex: 0 0 auto;
  62. height: 150rpx;
  63. padding-bottom: env(safe-area-inset-bottom, 0);
  64. }
  65. .tabbar {
  66. -webkit-tap-highlight-color: rgba(0,0,0,0);
  67. position: fixed;
  68. width: 100vw;
  69. // height: 100rpx;
  70. bottom: 0;
  71. display: flex;
  72. justify-content: space-around;
  73. /* 平分 TabBar 各项 */
  74. background-color: #fff;
  75. /* TabBar 背景色 */
  76. padding-bottom: env(safe-area-inset-bottom, 0);
  77. /* 避免与底部黑条重叠 */
  78. /* 仅在上方添加阴影 */
  79. box-shadow: 5px -1px 0px rgba(0, 0, 0, 0.1);
  80. /* 上边阴影效果 */
  81. height: 150rpx;
  82. align-items: center;
  83. border-top: none;
  84. /* 去掉上边的边框,如果之前有的话 */
  85. border-bottom: none;
  86. /* 去掉下边的边框 */
  87. }
  88. .tab-item {
  89. // padding: 15rpx 0;
  90. flex: 1;
  91. /* 每个 TabBar 项均分 */
  92. text-align: center;
  93. /* 内容居中 */
  94. cursor: pointer;
  95. /* 鼠标指针样式 */
  96. display: flex;
  97. /* 激活状态下加粗显示 */
  98. flex-direction: column;
  99. align-items: center;
  100. font-size: 20rpx;
  101. image {
  102. width: 50rpx;
  103. height: 50rpx;
  104. }
  105. }
  106. .tab-item.active {
  107. color: #0069f6;
  108. /* 激活状态下的文本颜色 */
  109. }
  110. </style>