index.wxml 331 B

123456789
  1. <view wx:if="{{datalist.length!=0}}" class="noticebar">
  2. <van-notice-bar scrollable="true" left-icon="volume-o">
  3. <view class="flex">
  4. <view wx:for="{{datalist}}" wx:key="index" bindtap="success" data-index="{{index}}" class="item">
  5. {{index+1}}、{{item.name}}
  6. </view>
  7. </view>
  8. </van-notice-bar>
  9. </view>