Skip to content

弹出模态框,常用于消息提示、消息确认、在当前页面内完成特定的交互操作。

平台差异说明

App(vue)App(nvue)H5微信小程序

基本使用

默认情况下,模态框只有一个确认按钮:

  • 请至少要配置弹框的内容参数content
  • 通过v-model绑定一个布尔变量来控制模态框的显示与否。
html
<template>
  <view>
    <su-modal v-model="show" :content="content"></u-modal>
    <su-button @click="open">打开模态框</u-button>
  </view>
</template>

<script setup>
  import { ref } from 'vue';

  // 使用 ref 创建响应式数据
  const show = ref(false);
  const content = ref('东临碣石,以观沧海');

  function open() {
    show.value = true;
  }
</script>

传入富文本内容

有时候我们需要给模态框的内容,不一定是纯文本的字符串,可能会需要换行,嵌入其他元素等,这时候我们可以使用slot功能,再结合uni-apprictText组件, 就能传入富文本内容了,如下演示:

html
<template>
  <view>
    <su-modal v-model="show" :title-style="{color: 'red'}">
      <view class="slot-content">
        <rich-text :nodes="content"></rich-text>
      </view>
    </su-modal>
    <su-button @click="open">打开模态框</u-button>
  </view>
</template>

<script setup>
  import { ref } from 'vue'

  const show = ref(false)

  const content = ref(`空山新雨后<br>天气晚来秋`)
  function open() {
    show.value = true;
  }
</script>

异步关闭

异步关闭只对"确定"按钮起作用,需要设置async-closetrue,当点击确定按钮的时候,按钮的文字变成一个loading动画,此动画的颜色为 confirm-color参数的颜色,同时Modal不会自动关闭,需要手动设置通过v-model绑定的变量为false来实现手动关闭。

html
<template>
  <view class="">
    <su-modal v-model="show" @confirm="confirm" ref="uModal1" :async-close="true"></su-modal>
    <su-button @click="showModal">弹起Modal</su-button>
  </view>
</template>

<script setup lang="ts">
  import { ref } from 'vue'
  const show = ref(false)

  function showModal() {
    show.value = true
  }

  function confirm() {
    setTimeout(() => {
      // 3秒后自动关闭
      show.value = false
      // 如果不想关闭,而单是清除loading状态,需要通过ref手动调用方法
      // this.$refs.uModal1.clearLoading();
    }, 3000)
  }
</script>

点击遮罩关闭

有时候我们不显示"关闭"按钮的时候,需要点击遮罩也可以关闭Modal,这时通过配置closeOnClickOverlaytrue即可

html
<su-modal v-model="show" :closeOnClickOverlay="true"></su-modal>

控制模态框宽度

可以通过设置width参数控制模态框的宽度,不支持百分比,可以数值,px,rpx单位

html
<su-modal v-model="show" width="70%"></su-modal>

自定义样式

此组件有完善的自定义功能,可以配置标题,内容,按钮等样式(传入对象形式),具体参数详见底部的API说明

html
<su-modal v-model="show" :title-style="{color: 'red'}"></su-modal>

缩放效果

开启缩放效果,在打开和收起模态框的时候,会带有缩放效果,具体效果请见示例,此效果默认开启,通过zoom参数配置

html
<su-modal v-model="show" :zoom="false"></su-modal>

useModal 函数

此函数可以方便的调用Modal,具体参数

html
<template>
  <view>
    <su-button @click="openModal(true)">打开Modal</su-button>
    <su-modal selector="id-1" :content="content" title="标题" :zoom="false"></su-modal>
  </view>
</template>
<script setup lang="ts">
  import { useModal } from 'sun-ui/components/su-modal'

  const { openModal, closeModal, setModalProps } = useModal('id-1')
</script>

示例源码

点击可以查看 右侧演示页面的源码

API

Props

注意:需要给modal组件通过v-model绑定一个布尔值,来初始化modal的状态,随后该值被双向绑定。 暴露的类型SuModalProps

参数说明类型默认值可选值
selector唯一标识符,用于在使用useModal函数时,调用ModalString--
modelValue是否显示模态框,请赋值给v-modelBooleanfalsetrue
z-index层级(规划中)String | Number1075-
title标题内容String提示-
width模态框宽度,数值时单位为rpxString | Number600百分比 / auto
content模态框内容,如传入slot内容,则此参数无效String内容-
showConfirmButton是否显示确认按钮Booleantruefalse
showCancelButton是否显示取消按钮Booleanfalsetrue
confirmText确认按钮的文字String确认-
cancelText取消按钮的文字String取消-
cancelColor取消按钮的颜色String#606266-
confirmColor确认按钮的颜色String#2979ff-
border-radius模态框圆角值,单位rpxString | Number16-
title-style自定义标题样式,对象形式Object--
contentStyle自定义内容样式,对象形式(规划中)Object--
cancelStyle自定义取消按钮样式,对象形式(规划中)Object--
confirmStyle自定义确认按钮样式,对象形式(规划中)Object--
zoom是否开启缩放模式Booleantruefalse
asyncClose是否异步关闭,只对确定按钮有效,见上方说明Booleanfalsetrue
closeOnClickOverlay是否允许点击遮罩关闭ModalBooleanfalsetrue
negativeTop往上偏移的值,以避免可能弹出的键盘重合,单位任意,数值则默认为rpx单位String | Number0-
buttonReverse对调确认和取消的位置Booleanfalsetrue
confirmButtonShape确认按钮的样式,如设置,将不会显示取消按钮Stringsquaresquare/circle
contentTextAlign内容的对齐方式Stringleftleft/center/right

Event

事件名说明回调参数
confirm点击确认按钮时触发-
cancel点击取消按钮时触发-
close点击遮罩关闭出发,closeOnClickOverlay为true有效-

Method

此方法需要通过ref调用,详见上方的"异步关闭"

事件名说明
clearLoading异步控制时,通过调用此方法,可以不关闭Modal,而单是清除loading状态

Slots

名称说明
default传入自定义内容,一般为富文本,见上方说明
confirm-button传入自定义按钮,用于在微信小程序弹窗通过按钮授权的场景

Released under the MIT License.

Released under the MIT License.