微信小程序
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.

10 lines
330 B

  1. <!--可滑动的 tab标签-->
  2. <scroll-view class="scroll_class" scroll-x="true">
  3. <view class="tab_container">
  4. <block wx:for="{{tabs}}" wx:key="id" >
  5. <view class="tab_item Al_shenhui_text_color " bindtap="handleTabClick" data-index="{{index}}" data-item="{{item}}">{{item.name}}</view>
  6. </block>
  7. </view>
  8. </scroll-view>