- 快速上手
-
布局
- 卡片 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
代码演示
基本形式
|
禁用某一项,禁用组件
|
居中
|
垂直居左
|
垂直居右
|
标题模板自定义
|
|
事件
请打开浏览器的控制台查看结果。
|
|
默认选中 Tab
需要同时设置 tabs
的 defaultKey
和 tab
的 key
|
API
Classes
Constants
- Component
JRTabs 选项卡
Functions
- config()
- select(item) 选择某一项(item) ⇒
void
Events
JRTab
Kind: global class
Extend: Component
new JRTab()
Param | Type | Default | Description |
---|---|---|---|
[options.data] | object |
= 绑定属性 | |
[options.data.title] | object |
'' |
=> 标题 |
[options.data.key] | string |
null |
=> key 标识 |
JRTabs
Kind: global class
Extend: Component
new JRTabs()
Param | Type | Default | Description |
---|---|---|---|
[options.data] | object |
= 绑定属性 | |
[options.data.selected] | object |
|
<=> 当前选择卡 |
[options.data.titleTemplate] | string |
null |
@=> 标题模板 |
[options.data.defaultKey] | string |
null |
=> 默认显示对应 key 的 Tab |
[options.data.readonly] | boolean |
false |
=> 是否只读 |
[options.data.disabled] | boolean |
false |
=> 是否禁用 |
[options.data.visible] | boolean |
true |
=> 是否显示 |
[options.data.class] | string |
=> 补充class |
Component
JRTabs 选项卡
Kind: global constant
Author: sensen(rainforest92@126.com)
config()
Kind: global function
Access: protected
select(item) 选择某一项(item) ⇒ void
Kind: global function
Access: public
Param | Type | Description |
---|---|---|
item | object |
选择项 |
“change 选项卡改变时触发”
Kind: event emitted
Properties
Name | Type | Description |
---|---|---|
sender | object |
事件发送对象 |
selected | object |
改变后的选项卡 |
“select 选择某一项时触发”
Kind: event emitted
Properties
Name | Type | Description |
---|---|---|
sender | object |
事件发送对象 |
selected | object |
当前选择卡 |
← 步骤