footer.wxml 962 B

123456789101112131415161718
  1. <!--templates/footer_parent/footer.wxml-->
  2. <template name="footer">
  3. <cover-view class="footer-container">
  4. <cover-view class="footer-wrapper">
  5. <cover-view class="footer-items">
  6. <block wx:for="{{list}}" wx:key="index">
  7. <cover-view wx:if='{{item.id == "camera"}}' class='footer-item' data-url="{{item.src}}" bindtap="navigateCtl">
  8. <cover-image class="footer-item-image-large" src="{{item.url}}"></cover-image>
  9. </cover-view>
  10. <cover-view wx:else class="footer-item" data-url="{{item.src}}" bindtap="redirectCtl">
  11. <cover-image class="footer-item-image" wx:if="{{item.url || item.actUrl}}" src="{{actIndex == index ? item.actUrl : item.url}}"></cover-image>
  12. <cover-view class="footer-item-text {{actIndex == index ? 'footer-item-text-active' : ''}}">{{item.text}}</cover-view>
  13. </cover-view>
  14. </block>
  15. </cover-view>
  16. </cover-view>
  17. </cover-view>
  18. </template>