listmenu.wxml 899 B

12345678910111213
  1. <view wx:if="{{item.data}}">
  2. <view class="fui-cell-group fui-cell-click" style="{{item.style.background?'background:'+item.style.background+';':''}}{{item.style.margintop?'margin-top:'+item.style.margintop/2+'px;':''}}">
  3. <view class="fui-cell" wx:for='{{item.data}}' wx:for-item='items' wx:for-index='idx' wx:key="menu">
  4. <view wx:if="{{items.iconclass}}" class="fui-cell-icon">
  5. <view class='icox {{items.iconclass}}'></view>
  6. </view>
  7. <view class='fui-cell-text' style="{{item.style.textcolor?'color:'+item.style.textcolor+';':''}}">{{items.text}}</view>
  8. <navigator url="{{items.linkurl}}">
  9. <view class='fui-cell-remark' style="{{item.style.remarkcolor?'color:'+item.style.remarkcolor+';':''}}">{{items.remark}}</view>
  10. </navigator>
  11. </view>
  12. </view>
  13. </view>