Popup 弹出层

介绍

弹出层容器,用于展示弹窗、信息提示等内容,支持多个弹出层叠加展示

引入

app.jsonindex.json中引入组件,详细介绍见快速上手

  1. "usingComponents": {
  2. "van-popup": "path/to/@vant/weapp/dist/popup/index"
  3. }

代码演示

基础用法

通过show属性控制弹出层是否展示

  1. <van-cell title="展示弹出层" is-link bind:click="showPopup" />
  2. <van-popup show="{{ show }}" bind:close="onClose">内容</van-popup>
  1. Page({
  2. data: {
  3. show: false
  4. },
  5. showPopup() {
  6. this.setData({ show: true });
  7. },
  8. onClose() {
  9. this.setData({ show: false });
  10. }
  11. });

弹出位置

通过position属性设置弹出位置,默认居中弹出,可以设置为topbottomleftright

  1. <van-popup
  2. show="{{ show }}"
  3. position="top"
  4. custom-style="height: 20%;"
  5. bind:close="onClose"
  6. />

关闭图标

设置closeable属性后,会在弹出层的右上角显示关闭图标,并且可以通过close-icon属性自定义图标,使用close-icon-position属性可以自定义图标位置

<van-popup
  show="{{ show }}"
  closeable
  position="bottom"
  custom-style="height: 20%"
  bind:close="onClose"
/>

<!-- 自定义图标 -->
<van-popup
  show="{{ show }}"
  closeable
  close-icon="close"
  position="bottom"
  custom-style="height: 20%"
  bind:close="onClose"
/>

<!-- 图标位置 -->
<van-popup
  show="{{ show }}"
  closeable
  close-icon-position="top-left"
  position="bottom"
  custom-style="height: 20%"
  bind:close="onClose"
/>

圆角弹窗

设置round属性后,弹窗会根据弹出位置添加不同的圆角样式

<van-popup
  show="{{ show }}"
  round
  position="bottom"
  custom-style="height: 20%"
  bind:close="onClose"
/>

API

Props

参数说明类型默认值版本
show是否显示弹出层booleanfalse-
z-indexz-index 层级number100-
overlay是否显示遮罩层booleantrue-
position弹出位置,可选值为 top bottom right leftstringcenter-
duration动画时长,单位为毫秒number | object300-
round是否显示圆角booleanfalse-
custom-style自定义弹出层样式string</td><td>-</td></tr><tr><td>overlay-style</td><td>自定义遮罩层样式</td><td>_string_</td><td>-
close-on-click-overlay是否在点击遮罩层后关闭booleantrue-
closeable是否显示关闭图标booleanfalse-
close-icon关闭图标名称或图片链接stringcross-
safe-area-inset-bottom是否为 iPhoneX 留出底部安全距离booleantrue-
safe-area-inset-top是否留出顶部安全距离(状态栏高度)booleanfalse-

Events

事件名说明参数
bind:close关闭弹出层时触发-
bind:click-overlay点击遮罩层时触发-
bind:before-enter进入前触发-
bind:enter进入中触发-
bind:after-enter进入后触发-
bind:before-leave离开前触发-
bind:leave离开中触发-
bind:after-leave离开后触发-

外部样式类

类名说明
custom-class根节点样式类

Popup 弹出层 - 图1