
	<mc-transition wx:if="{{ mask }}" visible="{{ mask && visible }}" duration="{{ duration }}" mc-class="mc-popup-swiper__mask" mc-style="{{ maskStyle }}" catch:touchmove="preventToucheMove"/>
	<mc-movable-bottom wx:if="{{ visible }}" visible="{{ visible }}" zIndex="{{ zIndex }}" scrollable="{{ scrollable }}" closeable="{{ closeable }}" heights="{{ heights }}" useHeaderSlot="{{ useHeaderSlot }}" useFooterSlot="{{ useFooterSlot }}" useContentHeaderSlot="{{ useContentHeaderSlot }}" useContentFooterSlot="{{ useContentFooterSlot }}" safeAreaTopStyle="{{ safeAreaTopStyle }}" bind:scroll="handleScroll" bind:scrolltolower="handleEndReached" bind:visible-change="handleActive" bind:close="handleClose" bind:fullscreen="handleFullscreen" bind:recover="handleRecover">
		<view wx:if="{{ inited }}" class="mc-popup-swiper {{ classes }} mc-class" style="-webkit-transition-duration: {{ currentDuration }}ms; {{ display ? '' : 'display: none;' }}; {{ mcStyle }}; {{ popupForceStyle }}">
			<slot/>
		</view>

		<!-- 动态的头部 -->
		<slot slot="header" name="header"/>

		<slot slot="footer" name="footer"/>

		<!-- 以下iOS13版本存在兼容性问题，滚动后，位置未发生变更（TODO: Fix） -->
		<slot slot="content-header" name="content-header"/>

		<slot slot="content-footer" name="content-footer"/>
	</mc-movable-bottom>
