index.vue 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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/images/tabbar-icon/home-fill.png" v-if="tabValue === 'courseHome'"></image>
  11. <image src="/static/images/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/images/tabbar-icon/user-s.png" v-if="tabValue === 'courseMine'"></image>
  16. <image src="/static/images/tabbar-icon/user-line.png" v-else></image>
  17. <text>我的</text>
  18. </view>
  19. </view> -->
  20. <view class="bottom-block"></view>
  21. <view class="bottom-box">
  22. <view class="menu-box">
  23. <view class="menu-item-box" :class="{'is-active': tabValue === 'courseHome'}" @click="selectTab('courseHome')">
  24. <view class="iconfont icon-home"></view>
  25. <view class="text">首页</view>
  26. </view>
  27. <view class="menu-item-box" :class="{'is-active': tabValue === 'courseMine'}" @click="selectTab('courseMine')">
  28. <view class="iconfont icon-user-s"></view>
  29. <view class="text">我的</view>
  30. </view>
  31. </view>
  32. </view>
  33. </view>
  34. </template>
  35. <script>
  36. import courseHome from './component/courseHome/courseHome.vue';
  37. import courseMine from './component/courseMine/courseMine.vue';
  38. export default {
  39. data() {
  40. return {
  41. tabValue: 'courseHome', // 默认选中的 Tab
  42. };
  43. },
  44. components: {
  45. courseHome,
  46. courseMine,
  47. },
  48. methods: {
  49. selectTab(value) {
  50. this.tabValue = value; // 设置当前选中的 Tab
  51. },
  52. },
  53. };
  54. </script>
  55. <style scoped lang="scss">
  56. .container {
  57. display: flex;
  58. flex-direction: column;
  59. height: 100vh;
  60. }
  61. .content {
  62. flex: 1;
  63. /* 内容区填充剩余空间 */
  64. padding: 0 30rpx;
  65. /* 内边距 */
  66. }
  67. .courseHome {
  68. background-color: #fff;
  69. }
  70. .courseMine {
  71. background-color: #f7f7f7;
  72. }
  73. .tabbar-block {
  74. flex: 0 0 auto;
  75. height: 150rpx;
  76. padding-bottom: env(safe-area-inset-bottom, 0);
  77. }
  78. .tabbar {
  79. -webkit-tap-highlight-color: rgba(0,0,0,0);
  80. position: fixed;
  81. width: 100vw;
  82. // height: 100rpx;
  83. bottom: 0;
  84. display: flex;
  85. justify-content: space-around;
  86. /* 平分 TabBar 各项 */
  87. background-color: #fff;
  88. /* TabBar 背景色 */
  89. padding-bottom: env(safe-area-inset-bottom, 0);
  90. /* 避免与底部黑条重叠 */
  91. /* 仅在上方添加阴影 */
  92. box-shadow: 5px -1px 0px rgba(0, 0, 0, 0.1);
  93. /* 上边阴影效果 */
  94. height: 150rpx;
  95. align-items: center;
  96. border-top: none;
  97. /* 去掉上边的边框,如果之前有的话 */
  98. border-bottom: none;
  99. /* 去掉下边的边框 */
  100. }
  101. .tab-item {
  102. // padding: 15rpx 0;
  103. flex: 1;
  104. /* 每个 TabBar 项均分 */
  105. text-align: center;
  106. /* 内容居中 */
  107. cursor: pointer;
  108. /* 鼠标指针样式 */
  109. display: flex;
  110. /* 激活状态下加粗显示 */
  111. flex-direction: column;
  112. align-items: center;
  113. font-size: 20rpx;
  114. image {
  115. width: 50rpx;
  116. height: 50rpx;
  117. }
  118. }
  119. .tab-item.active {
  120. color: #0069f6;
  121. /* 激活状态下的文本颜色 */
  122. }
  123. .bottom-block {
  124. flex: 0 0 auto;
  125. height: calc(112rpx + env(safe-area-inset-bottom, 0));
  126. }
  127. .bottom-box {
  128. padding: 5rpx 20rpx;
  129. background-color: $uni-bg-color-grey;
  130. border: 1rpx solid #E9E9E9;
  131. padding-bottom: calc(5rpx + env(safe-area-inset-bottom, 0));
  132. @include bottomMagnet();
  133. .menu-box {
  134. height: 100rpx;
  135. display: flex;
  136. align-items: center;
  137. .menu-item-box {
  138. width: calc(100% / 2);
  139. text-align: center;
  140. .iconfont {
  141. font-size: 55rpx;
  142. }
  143. .text {
  144. font-size: $uni-font-size-2;
  145. }
  146. }
  147. .is-active {
  148. color: $uni-color-primary;
  149. }
  150. }
  151. }
  152. </style>