spike-tabbar.vue 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <template>
  2. <view class="tabs">
  3. <view class="flex-align marginL14">
  4. <view v-for="(item) in tabs" :key="item.label" class="tab marginR12" @click="clickTab(item)">
  5. <image :src="tab === item.label ? resource.spike_active : resource.spike_tab" class="image" />
  6. {{item.value}}
  7. </view>
  8. </view>
  9. </view>
  10. </template>
  11. <script>
  12. import resource from '@/utils/resource'
  13. export default{
  14. data() {
  15. return {
  16. resource,
  17. tabs:[
  18. {
  19. value: '全部',
  20. label: 99
  21. },
  22. {
  23. value: '进行中',
  24. label: 0
  25. },
  26. {
  27. value: '已售罄',
  28. label: 1
  29. }
  30. ],
  31. tab: 99
  32. }
  33. },
  34. methods: {
  35. clickTab(item) {
  36. this.tab = item.label
  37. this.$emit('change', this.tab)
  38. }
  39. }
  40. }
  41. </script>
  42. <style lang="scss" scoped>
  43. .tab {
  44. position: relative;
  45. width: 217rpx;
  46. height: 71rpx;
  47. line-height: 71rpx;
  48. text-align: center;
  49. font-size: 40rpx;
  50. text-shadow: -2px 0 black, 0 2px black,
  51. 2px 0 black, 0 -2px black;
  52. .image {
  53. position: absolute;
  54. top: 0;
  55. left: 0;
  56. width: 100%;
  57. height: 100%;
  58. z-index: -1;
  59. }
  60. }
  61. </style>