- <!--templates/footer_master/footer_master.wxml-->
- <template name="footer">
- <view class="footer-container">
- <view class="footer-wrapper">
- <view class="footer-items">
- <block wx:for="{{list}}" wx:key="{{index}}">
- <view class="footer-item" data-url="{{item.src}}" data-paras='{{({a: 1})}}' bindtap="redirectTo">
- <image class="footer-item-image {{actIndex == index ? 'footer-item-image-active' : ''}}" wx:if="{{item.url || item.actUrl}}" src="{{actIndex == index ? item.actUrl : item.url}}"></image>
- <view class="footer-item-text {{actIndex == index ? 'footer-item-text-active' : ''}}">{{item.text}}</view>
- </view>
- </block>
- </view>
- </view>
- </view>
- </template>
|