20 lines
788 B
Plaintext
20 lines
788 B
Plaintext
<view class="wx-coolui-scroller-second-floor second-floor-class" style="" bind:touchstart="touchStart" bind:touchend="touchEnd" bind:touchmove="touchMove">
|
|
<view class="second-floor-wapper" animation="{{wapperAnimationData}}">
|
|
<view class="second-floor-inner" style="">
|
|
<view style="height: 100vh;" animation="{{innerAnimationData}}">
|
|
<slot name="second-floor"></slot>
|
|
</view>
|
|
<div class="second-floor-text">
|
|
<slot name="second-floor-refresh"></slot>
|
|
</div>
|
|
</view>
|
|
<view class="first-floor" style="">
|
|
<view style="height: {{statusBarHeight}}px">
|
|
<slot name="nav-bar"></slot>
|
|
</view>
|
|
<view style="height: calc(100vh - {{statusBarHeight}}px)">
|
|
<slot></slot>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view> |