tabbar2.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="flex-align-around" :class="[customClass, light ? 'tabs-light' : 'tabs']">
  3. <view
  4. v-for="item in tabs"
  5. :key="item.value"
  6. class="cell flex-align-around"
  7. :class="{ active: tab.value === item.value }"
  8. @click="clickTab(item)"
  9. >
  10. {{ item.title }}
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. props: {
  17. light: {
  18. default: false,
  19. type: Boolean
  20. },
  21. tabs: Array,
  22. initial: {
  23. default: 0,
  24. type: Number
  25. },
  26. customClass: {
  27. default: '',
  28. type: String
  29. }
  30. },
  31. data() {
  32. return {
  33. tab: this.tabs[this.initial]
  34. }
  35. },
  36. methods: {
  37. clickTab(item) {
  38. this.tab = item
  39. this.$emit('change', item)
  40. }
  41. }
  42. }
  43. </script>
  44. <style lang="scss" scoped>
  45. .tabs {
  46. height: 56rpx;
  47. .cell {
  48. height: 100%;
  49. width: 128rpx;
  50. position: relative;
  51. display: inline-block;
  52. font-size: 24rpx;
  53. color: #999999;
  54. background: #f3f3f8;
  55. border-radius: 24rpx 24rpx 0 0;
  56. text-align: center;
  57. line-height: 56rpx;
  58. &.active {
  59. color: #000;
  60. background-color: #fff;
  61. }
  62. }
  63. }
  64. .tabs-light {
  65. height: 38px;
  66. background: #ffffff;
  67. border-radius: 8px;
  68. }
  69. </style>