nav.wxml 691 B

123456789101112
  1. <view wx:if="{{item.data}}">
  2. <view class="fui-icon-group col-{{item.style.rownum?item.style.rownum:4}} noborder {{item.style.navstyle?item.style.navstyle:''}}" style="{{item.style.background?'background:'+item.style.background+';':''}}">
  3. <block wx:for='{{item.data}}' wx:for-item='item' wx:for-index='idx' wx:key="nav">
  4. <navigator url="{{item.linkurl}}" class="fui-icon-col">
  5. <view>
  6. <image src='{{item.imgurl}}'></image>
  7. </view>
  8. <view class='navs-navname' style="{{item.color?'color:'+item.color+';':''}}">{{item.text}}</view>
  9. </navigator>
  10. </block>
  11. </view>
  12. </view>