跳到主要内容

分类选择 TreeSelect

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

安装使用

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

用法示例

基础用法

const App: React.FC = () => {
const options = [
{
label: "侧边导航",
value: "a1",
children: [
{ label: "标题文字", value: "a1-1" },
{ label: "标题文字", value: "a1-2" }
]
}
];
return (
<>
<TiTreeSelect options={options} />
</>
)
}

自定义数据项别名

const App: React.FC = () => {
const alias = { label: 'name', value: 'id', children: 'list' };
const options = [
{
name: "侧边导航",
id: "a1",
list: [
{ name: "标题文字", id: "a1-1" },
{ name: "标题文字", id: "a1-2" }
]
}
];
return (
<>
<TiTreeSelect options={options} alias={alias} />
</>
)
}

自定义右侧内容部分

const App: React.FC = () => {
const [index, setIndex] = useState(0)
const options = [
{
label: "侧边导航1",
value: "a1"
},
{
label: "侧边导航2",
value: "a2"
}
];
const onChangeNav = (e) => {
setIndex(e.detail.index)
}
return (
<>
<TiTreeSelect options={options} onChangeNav={onChangeNav} />
{index === 0 && <div>content-a</div>}
{index === 1 && <div>content-b</div>}
</TiTreeSelect>
</>
)
}

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-cell-h108px右侧默认选项内容的每项高度-
--tree-select-active-color#fa2c19右侧默认选项内容选中颜色-
--tree-select-disabled-color#c4c4c4右侧默认选项内容禁用颜色-