index.wxml 480 B

123456789101112131415161718
  1. <block wx:if="{{ layout !== 'none' }}">
  2. <wux-cell-group
  3. wux-class="{{ classes.wrap }}"
  4. prefixCls="{{ cellGroupPrefixCls }}"
  5. title="{{ title }}"
  6. label="{{ label }}"
  7. mode="{{ mode }}"
  8. bodyStyle="{{ { overflow: 'visible', ...bodyStyle } }}"
  9. >
  10. <slot></slot>
  11. </wux-cell-group>
  12. <view class="{{ classes.footer }}">
  13. <slot name="footer"></slot>
  14. </view>
  15. </block>
  16. <block wx:else>
  17. <slot></slot>
  18. </block>