vip-tabbar.vue 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. <template>
  2. <view class="flex-align-between scroll-x nowrap marginL50">
  3. <view
  4. v-for="item in data"
  5. :key="item.value"
  6. class="relative tab_item paddingX16"
  7. @click="click(item.value)"
  8. >
  9. <view
  10. class="font4 paddingY12 relative"
  11. :class="[activeTab == item.value ? 'active-text' : 'color-white opacity_6']"
  12. >
  13. {{ getStr(item) }}
  14. <view :class="activeTab == item.value ? 'line' : 'line-none'"></view>
  15. </view>
  16. </view>
  17. <view
  18. class="tab_select marginL10 marginR18"
  19. :class="[activeTab == 0 ? 'active-text' : 'color-white opacity6']"
  20. >
  21. <tab-select :activeTab="activeTab" @change="onChange()" />
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. import tabSelect from './select.vue'
  27. export default {
  28. components: { tabSelect },
  29. props: {},
  30. data() {
  31. return {
  32. activeTab: 0,
  33. tab: null,
  34. data: [],
  35. sellType: ''
  36. }
  37. },
  38. mounted() {
  39. this.getCategorys()
  40. },
  41. methods: {
  42. async getCategorys() {
  43. const res = await this.$service.mall.categorys()
  44. if (res && res.length > 0) {
  45. let array = res.map((item) => ({
  46. label: item.name,
  47. value: item.id
  48. }))
  49. this.data = array
  50. this.tab = this.data[0]
  51. } else {
  52. this.data = []
  53. this.tab = null
  54. }
  55. },
  56. getStr(item) {
  57. return typeof item === 'string' ? item : item['label']
  58. },
  59. click(value) {
  60. this.activeTab = value
  61. this.$emit('change', value, this.sellType)
  62. },
  63. onChange(type) {
  64. this.sellType = type
  65. this.click(0)
  66. }
  67. }
  68. }
  69. </script>
  70. <style lang="scss" scoped>
  71. .tab_select {
  72. position: absolute;
  73. left: 0;
  74. z-index: 9;
  75. }
  76. .tab_item:nth-of-type(1) {
  77. padding-left: 0;
  78. }
  79. .active-text {
  80. text-shadow: 0px 0px 5px #a76ef4;
  81. color: #ffffff;
  82. font-weight: bold;
  83. }
  84. .line {
  85. width: 35rpx;
  86. height: 5rpx;
  87. margin: 5rpx auto 0;
  88. border-radius: 5rpx;
  89. // background: #a76ef4;
  90. }
  91. .line-none {
  92. width: 3rpx;
  93. height: 5rpx;
  94. margin: 5rpx auto 0;
  95. border-radius: 5rpx;
  96. background: #222335;
  97. }
  98. </style>