跳到主要内容

分类选择 TreeSelect

多组数据选择,内置侧边栏组件

安装使用

import { TiTreeSelect } from '@titian-design/mobile-react'

用法示例

基础用法
codesanbox
copy
code
自定义内容
content-a
codesanbox
copy
code
自定义数据项别名
codesanbox
copy
code

TiTreeSelect API

属性 Properties

名称类型必填默认值说明备注
optionsArray<Option>-选项数据,Option类型,普通模式需包含 children 字段,自定义模式不需要 children 字段-
defaultIndexnumber0左侧选中项的索引-
activeValuearray-右侧选中项的 value,对应option 子项 value 值-
disabledValuearray-禁用项,option 子项 value 值-
heightnumber | string100%高度-
maxCountnumber-最多可选项数-
iconstring-选项右侧 icon-
aliasRecord<string, string>-数据项默认字段名label value children的别名,用于自定义数据-
extStylestring | Record<string, string>-根节点样式-

Option

API 属性中的 options 为一个对象数组,数组中的每一个对象有以下 key:

名称类型必填默认值说明备注
labelstring-展示文字-
valuestring-唯一id-
childrenArray<{label: string, value: string}>-右侧内容区域列表数据项,其中value值对应activeValue和disabledValue中的值-

事件 Events

名称参数列表描述备注
onChangeNav(e: CustomEvent<{index: number, item: Record<string, any>}>) => void父选项改变是触发-
onChangeItem(e: CustomEvent<{activeValue: array, current: Record<string, any>, item: Record<string, any>}>) => void子选项改变是触发-

插槽 Slots

名称说明备注
default默认插槽-

外部样式类 External Classes

名称说明备注
extClass根节点样式类名-
treeSelectSidebar左侧 sidebar 样式类名-
treeSelectContainer右侧容器样式类名-

CSS 变量 CSS Variable

变量默认值说明备注
--tree-select-active-colortheme.color.brand.1000右侧默认选项内容选中颜色-
--tree-select-disabled-colortheme.color.gray.texticon.250右侧默认选项内容禁用颜色-