index.wxml 427 B

1234567891011
  1. <van-popup class="popup" show="{{ sheetTitle }}" custom-style="height: 100vh;" position="bottom" round safe-area-inset-bottom='{{false}}'>
  2. <view class="header">
  3. {{sheetTitle}}
  4. <view class="close" bindtap="sheetClose">
  5. <van-icon size='35rpx' name="cross" />
  6. </view>
  7. </view>
  8. <scroll-view scroll-y style="height:{{scrollHeight}}px;">
  9. <slot />
  10. </scroll-view>
  11. </van-popup>