- 快速上手
布局
- 卡片 card
- 表格 ui.table
表单
- 上传组件 KLUpload
- 复选框 check
- 复选组 check.group
- 日期选择 date.picker
- 表单项 form.item
- 多级选择 multi.select
- 单选组 radio.group
- 联动选择 select.group
- 按钮 ui.button
- 表单 ui.form
- 输入框 ui.input
- 下拉选择 ui.select
- 展示文本 ui.text
- 文本输入 ui.textarea
通知
- 遮罩 mask
- 模态框 modal
- 通知 notify
- 确认提示 pop.confirm
导航
- 面包屑 KLCrumb
- 两级菜单 menu
- 分页 pager
- 菜单栏 sidebar
- 步骤 steps
- 选项卡 tabs
其它
- 图标 KLIcon
- 文字提示 tooltip
含有遮罩层的对话框,用于模拟浏览器的alert
、confirm
和prompt
。
模态对话框通过遮罩层来阻止用户的其他行为。
代码演示
基本形式
|
|
Disable
|
|
不显示 footer
|
|
禁止关闭
|
|
Alert
|
|
Confirm
|
|
API
Classes
Functions
- config()
- init()
- close(result) 关闭对话框(result) ⇒
void
- ok() 确定对话框() ⇒
void
- cancel() 取消对话框() ⇒
void
- title]) 弹出一个alert对话框。关闭时始终触发确定事件。([content], [title]) ⇒
Modal
- title]) 弹出一个confirm对话框([content], [title]) ⇒
Modal
Events
Modal
Kind: global class
Extend: Component
new Modal()
Param | Type | Default | Description | |
---|---|---|---|---|
[options.data] | object |
= 绑定属性 | Binding Properties | |
[options.data.title] | string |
"提示" |
=> 对话框标题 | Title of Dialog |
[options.data.content] | string |
=> 对话框内容 | ||
[options.data.contentTemplate] | string |
=> 对话框内容模板,用于支持复杂内容的自定义。 | ||
[options.data.footerTemplate] | string |
=> 对话框底部模板 | ||
[options.data.okDisabled] | boolean |
false |
=> Disale 确认按钮 | |
[options.data.cancelDisabled] | boolean |
false |
=> Disale 取消按钮 | |
[options.data.hasFooter] | boolean |
true |
=> 是否显示 footer | |
[options.data.isCanClose] | boolean |
true |
=> 是否允许取消关闭 | |
[options.data.okButton] | string | boolean |
true |
=> 是否显示确定按钮。值为string 时显示该段文字。 |
|
[options.data.cancelButton] | string | boolean |
false |
=> 是否显示取消按钮。值为string 时显示该段文字。 |
|
[options.data.class] | string |
=> 补充class | ||
[options.data.noClose] | boolean |
=> ok时是否关闭弹窗 | ||
[options.data.minHeight] | number |
=> 内容区域最小高度 | ||
[options.data.maxHeight] | number |
=> 内容区域最大高度,超出则显示滚动条 |
config()
Kind: global function
Access: protected
init()
Kind: global function
Access: protected
close(result) 关闭对话框(result) ⇒ void
Kind: global function
Access: public
Param | Type | Description |
---|---|---|
result | boolean |
点击确定还是取消 |
ok() 确定对话框() ⇒ void
Kind: global function
Access: public
cancel() 取消对话框() ⇒ void
Kind: global function
Access: public
“close 关闭对话框时触发”
Kind: event emitted
Properties
Name | Type | Description |
---|---|---|
result | boolean |
点击了确定还是取消 |
“ok 确定对话框时触发”
“cancel 取消对话框时触发”
Kind: event emitted
想让文档更完善?
来 GitHub 提个 PR 吧!