当前位置:   article > 正文

【antd】Ant design Vue树形控件Tree——增删改查操作_ant design vue tree

ant design vue tree

树形控件Tree——增删改查操作


Ant design 组件库中的树形控件,展示了相关的数据展示用法,但基本的增删改查操作还需要自己实现以下,最近花了两三天将基本操作进行实现了。(因为我很菜)

控件基本用法

首先,在组件库的基础上进行树形控件的搭建,引入组件库这一步(Ant design官网就有),下面进行介绍。

选择Tree控件的一类简单的进行使用,最重要的就是要看清楚其中的树形控件的数据定义,要求是树形的数据,在所给代码中就是treeData(treeData定义为响应式,我认为还是定义为reactive比较好);
在这里插入图片描述

<template>
  <div>
    <div style="margin-bottom: 16px">
      showLine:
      <a-switch v-model:checked="showLine" />
      <br />
      <br />
      showIcon:
      <a-switch v-model:checked="showIcon" />
    </div>
    <a-tree
      :show-line="showLine"
      :show-icon="showIcon"
      :default-expanded-keys="['0-0-0']"
      :tree-data="treeData"
      @select="onSelect"
    >
      <template #icon><carry-out-outlined /></template>
      <template #title="{ dataRef }">
        <template v-if="dataRef.key === '0-0-0-1'">
          <div>multiple line title</div>
          <div>multiple line title</div>
        </template>
        <template v-else>{
   {
    dataRef.title }}</template>
      </template>
      <template #switcherIcon="{ dataRef, defaultIcon }">
        <SmileTwoTone v-if="dataRef.key === '0-0-2'" />
        <component :is="defaultIcon" v-else />
      </template>
    </a-tree>
  </div>
</template>
<script>
import {
    CarryOutOutlined, SmileTwoTone } from '@ant-design/icons-vue';
import {
    defineComponent, ref } from 'vue';
export default defineComponent({
   
  components: {
   
    CarryOutOutlined,
    SmileTwoTone,
  },

  setup() {
   
    const showLine = ref(true);
    const showIcon = ref(false);
    const treeData = ref([{
   
      title: 'parent 1',
      key: '0-0',
      children: [{
   
        title: 'parent 1-0',
        key: '0-0-0',
        children: [{
   
          title: 'leaf',
          key: '0-0-0-0',
        }, {
   
          key: '0-0-0-1',
        }, {
   
          title: 'leaf',
          key: '0-0-0-2',
        }],
      }, {
   
        title: 'parent 1-1',
        key: '0-0-1',
        children: [{
   
          title: 'leaf',
          key: '0-0-1-0',
        }],
      }, {
   
        title: 'parent 1-2',
        key: '0-0-2',
        children: [{
   
          title: 'leaf 1',
          key: '0-0-2-0',
        }, {
   
          title: 'leaf 2',
          key: '0-0-2-1',
        }],
      }],
    }, {
   
      title: 'parent 2',
      key: '0-1',
      children: [{
   
        title: 'parent 2-0',
        key: '0-1-0',
        children: [{
   
          title: 'leaf',
          key: '0-1-0-0',
        }, {
   
          title: 'leaf',
          key: '0-1-0-1',
        }],
      }],
    }]);

    const onSelect = (selectedKeys, info) => {
   
      console.log('selected', selectedKeys, info);
    };

    return {
   
      showLine,
      showIcon,
      onSelect,
      treeData,
    };
  },

});
</script>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130

基本的效果就能展示到页面上了,其中的各个api,方法等在antdev的下面都有详细的说明。已经能自由进行展开和折叠,以及是否展示连线或者切换图标。

下面先做一个基本的功能,一个switch开关实现,全部展开和折叠。

  • step1:在template中将样式写进去
<a-switch v-model:checked="allKinds"/>
  • 1

其中的allkinds就是开关绑定的响应式变量,当checked变化时执行函数

  • step2:将定义的函数写在script的setup中,并返回出去,这里watch变量allkinds的变化

                
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/903362
推荐阅读
相关标签
  

闽ICP备14008679号