储能智慧云小程序
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

grid.wxml 475B

12345678910111213141516
  1. <wxs src="../common/utils.wxs" module="_" />
  2. <view style="{{_._style([style, customStyle])}}" class="{{_.cls(classPrefix, [theme])}} class {{prefix}}-class">
  3. <view wx:if="{{column > 0}}" class="{{classPrefix}}__content" style="{{ contentStyle }}">
  4. <slot />
  5. </view>
  6. <scroll-view
  7. wx:else
  8. scroll-x
  9. scroll-with-animation
  10. class="{{classPrefix}}__content"
  11. style="{{ 'white-space: nowrap;' + contentStyle }}"
  12. >
  13. <slot />
  14. </scroll-view>
  15. </view>