index.wxml 412 B

1234567
  1. <!--custom-tab-bar/index.wxml-->
  2. <view class="bottom-section" wx:if="{{ showBar }}">
  3. <view class="orders" bind:tap="switchTab" wx:for="{{list}}" wx:key="index" data-path="{{item.pagePath}}" data-index="{{index}}">
  4. <image src="{{ selected === index ? item.selectedIconPath : item.iconPath }}" />
  5. <text style="color: {{selected === index ? selectedColor : color}}">{{item.text}}</text>
  6. </view>
  7. </view>