首页 前端知识 antdvue树选择组件a-tree-select,只有叶子节点可以被选中

antdvue树选择组件a-tree-select,只有叶子节点可以被选中

2024-02-27 11:02:41 前端知识 前端哥 385 304 我要收藏

【效果】只有叶子节点可以被选中

 【步骤】按步骤copy即可(vue2版本)

1、html中

<a-tree-select
            v-model="ffid"
            show-search
            style="width: 100%"
            :dropdown-style="{ maxHeight: '400px', overflow: 'auto' }"
            placeholder="请从标签树中选择"
            allow-clear
            multiple
            :tree-default-expand-all="false"
            :tree-data="treeData"
            :replace-fields="{children:'children', key:'id', value: 'id', title: 'name'}"
          >
</a-tree-select>

2、js中

2.1data中:

data () {
    return {
      ffid:''.
      treeData: [{
        name: 'parent 1',
        id: 'parent 1',
        children: [{
          name: 'parent 1-0',
          id: 'parent 1-0',
          children: [{
            name: 'my leaf',
            id: 'leaf1'
          }, {
            name: 'your leaf',
            id: 'leaf2'
          }]
        }, {
          name: 'parent 1-1',
          id: 'parent 1-1'
        }]
      }]
    }
  },

2.2mounted、method中:

  mounted () {
    this.treeData = this.dealData(this.treeData)
  },
  methods () {
    dealData (param) {
      return param.map(item => ({
        ...item,
        disabled: !!item.children,
        children: item.children ? this.dealData(item.children) : []
      }))
  },

转载请注明出处或者链接地址:https://www.qianduange.cn//article/2801.html
标签
评论
发布的文章

前端大屏适配几种方案

2024-01-29 13:01:44

JQ效果—展开和收起

2024-03-13 00:03:45

JQuery事件的基本使用

2024-03-13 00:03:39

「jQuery系列」jQuery 事件

2024-03-13 00:03:36

大家推荐的文章
会员中心 联系我 留言建议 回顶部
复制成功!