Transfer 穿梭框

大约 3 分钟

Transfer 穿梭框

何时使用

  • 需要在多个可选项中进行多选时。
  • 比起 Select 和 TreeSelect,穿梭框占据更大的空间,可以展示可选项的更多信息。

穿梭选择框用直观的方式在两栏中移动元素,完成选择行为。

选择一个或以上的选项后,点击对应的方向键,可以把选中的选项移动到另一栏。其中,左边一栏为 source,右边一栏为 target,API 的设计也反映了这两个概念。

示例

基础穿梭框:

表格穿梭框:

树形结构穿梭框:

带搜索穿梭框:

带分页穿梭框:

单向模式:

头部默认移除全部所选Icon



头部自定义移除全部所选Icon

API

参数说明类型默认值版本
dataSource数据源,其中的数据将会被渲染到左边一栏中,targetKeys 中指定的除外。[{key: string.isRequired,title: string.isRequired,description: string,disabled: bool}][][]
disabled是否禁用booleanfalse
filterOption接收 inputValue option 两个参数,当 option 符合筛选条件时,应返回 true,反之则返回 false(inputValue, option): boolean
footer可以设置为一个 作用域插槽slot="footer" slot-scope="props"
listStyle两个穿梭框的自定义样式CSSProperties
locale各种语言object{ itemUnit: '项', itemsUnit: '项', notFoundContent: '列表为空', searchPlaceholder: '请输入搜索内容' }
oneWay展示为单向样式booleanfalse3.0.0
operations操作文案集合,顺序从上至下string[]['>', '<']
operationStyle操作栏的自定义样式CSSProperties-3.0.0
pagination使用分页样式,自定义渲染列表下无效boolean |flase3.0.0
render每行数据渲染函数,该函数的入参为 dataSource 中的项,返回值为 element。或者返回一个普通对象,其中 label 字段为 element,value 字段为 titleFunction(record)| slot
selectedKeys(v-model)设置哪些项应该被选中string[][]
showSearch是否显示搜索框booleanfalse
showSelectAll是否展示全选勾选框booleantrue
targetKeys(v-model)显示在右侧框数据的 key 集合string[][]
titles标题集合,顺序从左至右string[]['', '']
showHeaderDropdown()是否显示头部下拉操作项booleanfalse
removeAll()oneWay模式下,是否可移除全部targetKeysbooleantrue

事件

事件名称说明回调参数版本
change选项在两栏之间转移时的回调函数(targetKeys, direction, moveKeys): void
scroll选项列表滚动时的回调函数(direction, event): void
search搜索框内容时改变时的回调函数(direction: 'left'|'right', value: string): void-
selectChange选中项发生改变时的回调函数(sourceSelectedKeys, targetSelectedKeys): void
removeAllTargetKeys()移除全部目标选项时的回调函数,单向模式下生效(): void

slots

  • 针对oneWay将slot:rightTitle进行了扩展,支持slot:rightTitleIcon配置头部移除全部icon

Render Props

Transfer 支持接收 children 自定义渲染列表,并返回以下参数:

{
  "direction": String,
  "disabled": Boolean,
  "filteredItems": Array,
  "selectedKeys": Array,
  "onItemSelect": Function,
  "onItemSelectAll": Function
}
参数说明类型版本
direction渲染列表的方向'left' | 'right'
disabled是否禁用列表boolean
filteredItems过滤后的数据TransferItem[]
itemSelect勾选条目(key: string, selected: boolean)
itemSelectAll勾选一组条目(keys: string[], selected: boolean)
selectedKeys选中的条目string[]

参考示例

<f-transfer>
  <template
    #children="{
      direction,
      filteredItems,
      selectedKeys,
      disabled: listDisabled,
      onItemSelectAll,
      onItemSelect,
    }"
  >
    <your-component />
  <template>
</f-transfer>

注意

按照 Vue 最新的规范,所有的组件数组最好绑定 key。在 Transfer 中,dataSource里的数据值需要指定 key 值。对于 dataSource 默认将每列数据的 key 属性作为唯一的标识。

如果你的数据没有这个属性,务必使用 rowKey 来指定数据列的主键。

// 比如你的数据主键是 uid
return <Transfer :rowKey="record => record.uid" />;
上次编辑于:
贡献者: jiapeng.duan,Noah.Su