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.
14 lines
625 B
14 lines
625 B
<view class='container-popup {{ show ? "popup-show" : "" }} {{ "l-popup-" + direction===null?contentAlign:direction }} l-class'
|
|
style="z-index:{{zIndex}}; "
|
|
catchtouchmove="doNothingMove">
|
|
<view class='container-bg l-bg-class'></view>
|
|
<view
|
|
wx:if="{{show}}"
|
|
class="popup-content {{ show ? ((direction===null)?contentAlign:direction) : ''}} popup-fade-{{direction===null?contentAlign:direction}}-active-{{(transition===null?animation:transition) ? status:''}} l-panel-class"
|
|
catchtap='onPopupTap'>
|
|
<view catchtap="doNothingTap">
|
|
<slot></slot>
|
|
</view>
|
|
</view>
|
|
</view>
|