tabbar.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <template>
  2. <view class="tabBox" :class="[customClass]">
  3. <view
  4. v-for="(item, index) in data"
  5. :key="index"
  6. class="relative item"
  7. @click="click(index)"
  8. >
  9. <view
  10. class="font4 paddingY12 text"
  11. :class="[activeTab == index ? activeClass : inactiveClass]"
  12. >
  13. {{ getStr(item) }}
  14. </view>
  15. <view v-if="activeTab == index" class="line"></view>
  16. </view>
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. props: {
  22. customClass: String,
  23. initial: {
  24. default: 0,
  25. type: Number
  26. },
  27. around: {
  28. default: true,
  29. type: Boolean
  30. },
  31. data: Array,
  32. labelKey: {
  33. default: 'label',
  34. type: String
  35. },
  36. valueKey: {
  37. default: 'label',
  38. type: String
  39. },
  40. inactiveClass: {
  41. default: 'color-white',
  42. type: String
  43. },
  44. activeClass: {
  45. default: 'active-text',
  46. type: String
  47. },
  48. lineBottom: {
  49. default: 0,
  50. type: Number
  51. }
  52. },
  53. data() {
  54. return {
  55. activeTab: 0
  56. }
  57. },
  58. mounted() {
  59. this.activeTab = this.initial
  60. },
  61. methods: {
  62. getStr(item) {
  63. return typeof item === 'string' ? item : item[this.labelKey]
  64. },
  65. click(index) {
  66. this.activeTab = index
  67. this.$emit('change', index)
  68. },
  69. change(index) {
  70. this.click(index)
  71. }
  72. }
  73. }
  74. </script>
  75. <style lang="scss" scoped>
  76. .tabBox {
  77. overflow: auto;
  78. word-break: keep-all;
  79. white-space: nowrap;
  80. }
  81. .item {
  82. font-size: 28rpx;
  83. color: #999999;
  84. margin-right: 50rpx;
  85. position: relative;
  86. display: inline-block;
  87. z-index: 10;
  88. .text {
  89. color: #999999;
  90. z-index: 10;
  91. }
  92. .active-text {
  93. color: #000000;
  94. font-weight: bold;
  95. position: relative;
  96. font-size: 28rpx;
  97. z-index: 1;
  98. }
  99. }
  100. .line {
  101. position: absolute;
  102. left: 0;
  103. right: 0;
  104. bottom: 20rpx;
  105. // width: 80rpx;
  106. height: 16rpx;
  107. z-index: 0;
  108. background: #fec433;
  109. }
  110. </style>