index.vue 2.4 KB

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