Skip to content
On this page

ek.showModal

支持 Promise

显示模态对话框。

参数

参数类型默认值必填说明
titlestring标题
contentstring内容
showCancelbooleantrue是否显示取消按钮
cancelTextstring取消取消按钮的文字
cancelColorstring
#000
取消按钮的文字颜色,必须是 16 进制格式
confirmTextstring确定确认按钮的文字
confirmColorstring
#576B95
确认按钮的文字颜色,必须是 16 进制格式
editableboolean是否显示输入框
placeholderTextstring显示输入框时的提示文本
successfunction接口调用成功的回调函数
failfunction接口调用失败的回调函数
completefunction接口调用结束的回调函数(调用成功、失败都会执行)

成功返回

属性类型说明
contentstringeditable 为 true 时,用户输入的文本
confirmboolean为 true 时,表示用户点击了确定按钮
cancelboolean为 true 时,表示用户点击了取消

Example

ts
ek.showModal({
  title: '是否删除',
  content: '删除后将无法找回照片'
})