- 快速上手
-
布局
- 卡片 JRCard
- 容器布局 JRContainer
- 表格 JRTable
-
表单
- 按钮 JRButton
- 复选框 JRCheck
- 复选组 JRCheckGroup
- 日期选择 JRDatePicker
- 表单 JRForm
- 输入框 JRInput
- 多级选择 JRMultiSelect
- 单选组 JRRadioGroup
- 下拉选择 JRSelect
- 开关 JRSwitch
- 展示文本 JRText
- 文本输入 JRTextArea
- 树型视图 JRTreeView
- 上传文件 JRUpload
-
通知
- 遮罩 JRMask
- 模态框 JRModal
- 通知 JRNotify
- 确认提示 JRPopConfirm
-
导航
- 折叠面板 JRCollapse
- 面包屑 JRCrumb
- 两级菜单 JRMenu
- 分页 JRPager
- 菜单栏 JRSidebar
- 步骤 JRSteps
- 选项卡 JRTabs
-
拖拽相关
- 拖出 JRDraggable
- 拖入 JRDroppable
- 移动 JRMovable
- 滑块 JRSlider
-
其它
- 徽标 JRBadge
- 图标 JRIcon
- 图片预览 JRImagePreview
- 加载 JRLoading
- 国际化 JRLocaleProvider
- 进度条 JRProgress
- 文字提示 JRTooltip
含有遮罩层的对话框,用于模拟浏览器的alert
、confirm
和prompt
。
模态对话框通过遮罩层来阻止用户的其他行为。
代码演示
基本形式
|
|
Disable
|
|
不显示 footer
|
|
禁止关闭
|
|
Alert
|
|
Confirm
|
|
API
Classes
Constants
- Component
JRModal 模态对话框
Functions
- config()
- init()
- close(result) 关闭对话框(result) ⇒
void
- ok() 确定对话框() ⇒
void
- cancel() 取消对话框() ⇒
void
- title]) 弹出一个alert对话框。关闭时始终触发确定事件。([content], [title]) ⇒
Modal
- title]) 弹出一个confirm对话框([content], [title]) ⇒
Modal
Events
JRModal
Kind: global class
Extend: Component
new JRModal()
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 |
=> 内容区域最大高度,超出则显示滚动条 |
Component
JRModal 模态对话框
Kind: global constant
Author: sensen(rainforest92@126.com)
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