foot.wxml 419 B

123456789
  1. <view class="foot">
  2. <van-tabbar active="{{ active }}" bind:change="tabPath">
  3. <van-tabbar-item wx:for="{{menuList}}" wx:key="item">
  4. <image slot="icon" src="{{ item.normal }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  5. <image slot="icon-active" src="{{ item.active }}" mode="aspectFit" style="width: 24px; height: 26px;" />
  6. {{item.title}}
  7. </van-tabbar-item>
  8. </van-tabbar>
  9. </view>