# DialogPlus 弹出框
弹出模态框,常用于消息提示、消息确认,或在当前页面内完成特定的交互操作,支持函数调用和组件调用两种方式。
# 引入
注意,press-dialog-plus
节点需要埋在页面下,否则小程序中找不到。H5 环境可以不预埋,找不到节点时,会动态创建。
<PressDialogPlus id="press-dialog" />
import PressDialogPlus from 'press-ui/press-dialog-plus/press-dialog-plus';
export default {
components: {
PressDialogPlus,
}
}
# 代码演示
# 消息提示
用于提示一些消息,只包含一个确认按钮。
<press-dialog-plus id="press-dialog" />
import Dialog from 'press-ui/press-dialog-plus/handler';
Dialog.alert({
title: '标题',
message: '弹窗内容',
}).then(() => {
// on close
});
Dialog.alert({
message: '弹窗内容',
}).then(() => {
// on close
});
# 消息确认
用于确认消息,包含取消和确认按钮。
<press-dialog-plus id="press-dialog" />
import Dialog from 'press-ui/press-dialog-plus/handler';
Dialog.confirm({
title: '标题',
message: '弹窗内容',
})
.then(() => {
// on confirm
})
.catch(() => {
// on cancel
});
# 圆角按钮风格
将 theme 选项设置为 round-button
可以展示圆角按钮风格的弹窗。
<press-dialog-plus id="press-dialog" />
import Dialog from 'press-ui/press-dialog-plus/handler';
Dialog.alert({
title: '标题',
message: '弹窗内容',
theme: 'round-button',
}).then(() => {
// on close
});
Dialog.alert({
message: '弹窗内容',
theme: 'round-button',
}).then(() => {
// on close
});
# 异步关闭
通过 beforeClose
属性可以传入一个回调函数,在弹窗关闭前进行特定操作。
<press-dialog-plus id="press-dialog" />
import Dialog from 'press-ui/press-dialog-plus/handler';
const beforeClose = (action) => new Promise((resolve) => {
setTimeout(() => {
if (action === 'confirm') {
resolve(true);
} else {
// 拦截取消操作
resolve(false);
}
}, 1000);
});
Dialog.confirm({
title: '标题',
message: '弹窗内容'
beforeClose
});
# 组件调用
如果需要在弹窗内嵌入组件或其他自定义内容,可以使用组件调用的方式。
<press-dialog-plus
use-slot
title="标题"
:show="show"
show-cancel-button
confirm-button-open-type="getUserInfo"
@close="onClose"
@getuserinfo="getUserInfo"
>
<img src="https://img.yzcdn.cn/1.jpg" />
</press-dialog-plus>
export default {
data() {
return {
show: true,
}
},
methods: {
getUserInfo(detail) {
console.log(detail);
},
onClose() {
this.show = false;
},
}
};
# API
# 方法
方法名 | 参数 | 返回值 | 介绍 |
---|---|---|---|
Dialog | options | Promise | 展示弹窗 |
Dialog.alert | options | Promise | 展示消息提示弹窗 |
Dialog.confirm | options | Promise | 展示消息确认弹窗 |
Dialog.setDefaultOptions | options | void | 修改默认配置,对所有 Dialog 生效 |
Dialog.resetDefaultOptions | - | void | 重置默认配置,对所有 Dialog 生效 |
Dialog.close | - | void | 关闭弹窗 |
Dialog.stopLoading | - | void | 停止按钮的加载状态 |
# Options
通过函数调用 Dialog 时,支持传入以下选项:
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
title | 标题 | string | - |
width | 弹窗宽度,默认单位为px | string | number | 320px |
message | 文本内容,支持通过\n 换行 | string | - |
messageAlign | 内容对齐方式,可选值为left right | string | center |
theme | 样式风格,可选值为round-button | string | default |
zIndex | z-index 层级 | number | 100 |
className | 自定义类名,dialog 在自定义组件内时无效 | string | '' |
customStyle | 自定义样式 | string | '' |
selector | 自定义选择器 | string | press-dialog |
showConfirmButton | 是否展示确认按钮 | boolean | true |
showCancelButton | 是否展示取消按钮 | boolean | false |
confirmButtonText | 确认按钮的文案 | string | 确认 |
cancelButtonText | 取消按钮的文案 | string | 取消 |
overlay | 是否展示遮罩层 | boolean | true |
overlayStyle | 自定义遮罩层样式 | object | - |
closeOnClickOverlay | 点击遮罩层时是否关闭弹窗 | boolean | false |
asyncClose | 已废弃,将在 2.0.0 移除,请使用 beforeClose 属性代替 | boolean | false |
beforeClose | 关闭前的回调函数,返回 false 可阻止关闭,支持返回 Promise | (action) => boolean | Promise<boolean> | - |
context | 选择器的选择范围,可以传入自定义组件的 this 作为上下文 | object | 当前页面 |
transition | 动画名称,可选值为fade none | string | scale |
confirmButtonOpenType | 确认按钮的微信开放能力,具体支持可参考 微信官方文档 (opens new window) | string | - |
# OpenType Options
使用confirmButtonOpenType
后,支持以下选项:
参数 | 说明 | 类型 | 默认值 | open-type |
---|---|---|---|---|
appParameter | 打开 APP 时,向 APP 传递的参数 | string | - | launchApp |
lang | 指定返回用户信息的语言,zh_CN 简体中文, zh_TW 繁体中文,en 英文 | string | en | getUserInfo |
sessionFrom | 会话来源 | string | - | contact |
businessId | 客服消息子商户 id | number | - | contact |
sendMessageTitle | 会话内消息卡片标题 | string | 当前标题 | contact |
sendMessagePath | 会话内消息卡片点击跳转小程序路径 | string | 当前分享路径 | contact |
sendMessageImg | sendMessageImg | string | 截图 | contact |
showMessageCard | 显示会话内消息卡片 | string | false | contact |
# Props
通过组件调用 Dialog 时,支持以下 Props:
参数 | 说明 | 类型 | 默认值 |
---|---|---|---|
show | 是否显示弹窗 | boolean | - |
title | 标题 | string | - |
width | 弹窗宽度,默认单位为px | string | number | 320px |
message | 文本内容,支持通过\n 换行 | string | - |
theme | 样式风格,可选值为round-button | string | default |
message-align | 内容对齐方式,可选值为left right | string | center |
z-index | z-index 层级 | number | 100 |
class-name | 自定义类名,dialog 在自定义组件内时无效 | string | '' |
custom-style | 自定义样式 | string | '' |
show-confirm-button | 是否展示确认按钮 | boolean | true |
show-cancel-button | 是否展示取消按钮 | boolean | false |
confirm-button-text | 确认按钮的文案 | string | 确认 |
cancel-button-text | 取消按钮的文案 | string | 取消 |
confirm-button-color | 确认按钮的字体颜色 | string | #ee0a24 |
cancel-button-color | 取消按钮的字体颜色 | string | #333 |
overlay | 是否展示遮罩层 | boolean | true |
overlay-style v1.0.0 | 自定义遮罩层样式 | object | - |
close-on-click-overlay | 点击遮罩层时是否关闭弹窗 | boolean | false |
use-slot | 是否使用自定义内容的插槽 | boolean | false |
use-title-slot | 是否使用自定义标题的插槽 | boolean | false |
async-close | 已废弃,将在 2.0.0 移除,请使用 beforeClose 属性代替 | boolean | false |
before-close | 关闭前的回调函数,返回 false 可阻止关闭,支持返回 Promise | (action) => boolean | Promise<boolean> | - |
transition | 动画名称,可选值为fade | string | scale |
confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 微信官方文档 (opens new window) | string | - |
# OpenType Props
使用confirm-button-open-type
后,支持以下 Props:
参数 | 说明 | 类型 | 默认值 | open-type |
---|---|---|---|---|
app-parameter | 打开 APP 时,向 APP 传递的参数 | string | - | launchApp |
lang | 指定返回用户信息的语言,zh_CN 简体中文, zh_TW 繁体中文,en 英文 | string | en | getUserInfo |
session-from | 会话来源 | string | - | contact |
business-id | 客服消息子商户 id | number | - | contact |
send-message-title | 会话内消息卡片标题 | string | 当前标题 | contact |
send-message-path | 会话内消息卡片点击跳转小程序路径 | string | 当前分享路径 | contact |
send-message-img | sendMessageImg | string | 截图 | contact |
show-message-card | 显示会话内消息卡片 | string | false | contact |
# Events
事件 | 说明 | 回调参数 |
---|---|---|
@close | 弹窗关闭时触发 | event.detail: 触发关闭事件的来源, 枚举为 confirm ,cancel ,overlay |
@confirm | 点击确认按钮时触发 | - |
@cancel | 点击取消按钮时触发 | - |
@getuserinfo | 点击确认按钮时,会返回获取到的用户信息, 从返回参数的 detail 中获取到的值同 wx.getUserInfo | - |
@contact | 客服消息回调 | - |
@getphonenumber | 获取用户手机号回调 | - |
@error | 当使用开放能力时,发生错误的回调 | - |
@opensetting | 在打开授权设置页后回调 | - |
# Slot
名称 | 说明 |
---|---|
title | 自定义title 显示内容,如果设置了title 属性则不生效 |