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.
24 lines
578 B
24 lines
578 B
<l-popup
|
|
show="{{show}}"
|
|
direction="{{direction}}"
|
|
transition="{{transition}}"
|
|
opacity="{{opacity}}"
|
|
locked="{{locked}}"
|
|
z-index="{{zIndex}}"
|
|
l-class="l-class"
|
|
l-bg-class="l-bg-class"
|
|
bind:lintap="onArcPopupTap"
|
|
>
|
|
<scroll-view
|
|
scroll-y="true"
|
|
class="arc-popup l-panel-class"
|
|
style="{{arcStyle}}"
|
|
>
|
|
<view class="header-popup {{headerFixed ? 'fixed' : ''}} l-header-class">
|
|
<slot name="header" />
|
|
</view>
|
|
<view class="content-arc-popup">
|
|
<slot />
|
|
</view>
|
|
</scroll-view>
|
|
</l-popup> |