foot.wxml 469 B

1234567
  1. <view class="foot">
  2. <view class="list {{active==index?'active':''}}" wx:for="{{menuList}}" wx:key="item" wx:for-index="index" bindtap="tabPath" data-index="{{index}}">
  3. <image mode="aspectFit" src="{{item.normal}}" wx:if="{{active!=index}}"></image>
  4. <image mode="aspectFit" src="{{item.active}}" wx:else></image>
  5. <view class="title" style="color:{{active==index?frameStyle.barActive||'#0C437B':''}};">{{item.title}}</view>
  6. </view>
  7. </view>