You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
377 B
10 lines
377 B
<view class="tui-sticky-class">
|
|
<!--sticky 容器-->
|
|
<view style="height:{{stickyHeight}};background:{{bgColor}}" wx:if="{{isFixed}}"></view>
|
|
<view class="{{ isFixed === true ? 'tui-sticky-fixed' : '' }}" style="top:{{isFixed?stickyTop+'px':'auto'}}">
|
|
<slot name="header"></slot>
|
|
</view>
|
|
<!--sticky 容器-->
|
|
<!--内容-->
|
|
<slot name="content"></slot>
|
|
</view>
|