index.wxml 372 B

12345678910111213141516
  1. <van-tabbar
  2. active="{{ active }}"
  3. placeholder="{{true}}"
  4. z-index="999"
  5. active-color="rgba(107, 133, 89, 1)"
  6. inactive-color="rgba(179, 179, 179, 1)"
  7. bind:change="onChange">
  8. <block
  9. wx:for="{{list}}"
  10. wx:key="pagePath">
  11. <van-tabbar-item
  12. name="{{item.pagePath}}"
  13. icon="home-o">{{item.text}}
  14. </van-tabbar-item>
  15. </block>
  16. </van-tabbar>