You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
476 B

10 months ago
10 months ago
10 months ago
10 months ago
10 months ago
  1. <template>
  2. <view class="myTab">
  3. <u-tabs :list="tabList" @click="tabClick" lineHeight="4rpx" lineWidth="40rpx" itemStyle="height: 66rpx;" inactiveStyle="fontSize:28rpx" :current="current" :activeStyle="{
  4. color: '#3195fa',
  5. fontWeight: '600',
  6. fontSize:'28rpx'
  7. }"></u-tabs>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. props: ['tabList', 'current'],
  13. methods: {
  14. tabClick(item) {
  15. this.$emit('tabClick',item)
  16. }
  17. }
  18. }
  19. </script>
  20. <style>
  21. </style>