vr-shopxo-source/sourcecode/weixin/default/components/popup/popup.wxml

6 lines
376 B
Plaintext
Raw Normal View History

2020-08-10 14:05:54 +00:00
<view class="am-popup {{propClassname || ''}} {{(propShow || false) ? 'am-popup-show' : ''}} {{ (propAnimation || true) ? 'animation': '' }}" disable-scroll="{{propDisablescroll}}">
2018-12-31 03:34:09 +00:00
<view class="am-popup-mask" wx:if="{{propMask || true}}" bindtap="onMaskTap"></view>
<view class="am-popup-content am-popup-{{propPosition || 'bottom'}}">
<slot></slot>
</view>
</view>