• 使用element-ui实现树形穿梭框


    在这里插入图片描述

    <template>
      <div class="transferTreeBox">
        
        <div class="SelectBox">
          <div class="boxTitle" @click="clickAllSelect">全选 >div>
          <div class="boxCenter">
            <el-tree
              ref="leftTree"
              :data="leftData"
              :props="defaultProps"
              show-checkbox
              node-key="id"
            />
          div>
        div>
    
        
        <div class="transferBtn">
          <div class="pickBtn" @click="towardsRight">>>div>
          <div class="pickBtn" @click="towardsLeft"><<div>
          <el-button @click="renderTree">数据回显el-button>
        div>
    
        
        <div class="SelectBox">
          <div class="boxTitle" @click="clickCancelAllSelect">< 取消全选div>
    
          <div class="boxCenter">
            <el-tree
              ref="rightTree"
              :data="rightData"
              :props="defaultProps"
              show-checkbox
              node-key="id"
            />
          div>
        div>
      div>
    template>
    
    <script>
    const mockTreeData = [
      {
        id: '1',
        label: '1',
        children: [
          {
            id: '1-1',
            label: '1-1',
            pid: '1',
          },
          {
            id: '1-2',
            label: '1-2',
            pid: '1',
          },
          {
            id: '1-3',
            label: '1-3',
            pid: '1',
          },
        ],
      },
      {
        id: '2',
        label: '2',
        children: [
          {
            id: '2-1',
            label: '2-1',
            pid: '2',
          },
          {
            id: '2-2',
            label: '2-2',
            pid: '2',
          },
          {
            id: '2-3',
            label: '2-3',
            pid: '2',
          },
        ],
      },
      {
        id: '3',
        label: '3',
        children: [
          {
            id: '3-1',
            label: '3-1',
            pid: '3',
          },
          {
            id: '3-2',
            label: '3-2',
            pid: '3',
          },
          {
            id: '3-3',
            label: '3-3',
            pid: '3',
          },
        ],
      },
    ]
    export default {
      props: {
        cascaderData: {
          type: Array,
          default: () => mockTreeData,
        },
      }, // 班级的树形结构数据
      layout: 'login',
      data() {
        return {
          defaultProps: {
            children: 'children',
            label: 'label',
          },
          leftData: [],
          rightData: [],
        }
      },
      mounted() {
        this.leftData = mockTreeData
        this.rightData = []
      },
      methods: {
        // 点击向右穿梭
        towardsRight() {
          // (leafOnly, includeHalfChecked) 接收两个 boolean 类型的参数,
          // 1. 是否只是叶子节点,默认值为 false 2. 是否包含半选节点,默认值为 false
          const checkedNodes = this.$refs.leftTree.getCheckedNodes(false, true) // 包含半选
          const checkedKeys = this.$refs.leftTree.getCheckedKeys(false)
    
          const copyNodes = JSON.parse(JSON.stringify(checkedNodes))
          copyNodes.forEach(x => {
            x.children = []
            if (!this.$refs.rightTree.getNode(x.id)) {
              this.$refs.rightTree.append(x, x.pid)
            }
          })
    
          checkedKeys.forEach(x => {
            this.$refs.leftTree.remove(x)
          })
          this.afterToward()
        },
        // 点击向左穿梭
        towardsLeft() {
          const checkedNodes = this.$refs.rightTree.getCheckedNodes(false, true) // 包含半选
          const checkedKeys = this.$refs.rightTree.getCheckedKeys(false)
    
          const copyNodes = JSON.parse(JSON.stringify(checkedNodes))
          copyNodes.forEach(x => {
            x.children = []
            if (!this.$refs.leftTree.getNode(x.id)) {
              this.$refs.leftTree.append(x, x.pid)
            }
          })
    
          checkedKeys.forEach(x => {
            this.$refs.rightTree.remove(x)
          })
    
          this.afterToward()
        },
        // 点击全选
        clickAllSelect() {
          this.$refs.leftTree.setCheckedNodes(this.leftData)
    
          this.towardsRight()
        },
        // 点击取消全选
        clickCancelAllSelect() {
          this.$refs.rightTree.setCheckedNodes(this.rightData)
          this.towardsLeft()
        },
        // 数据穿梭后
        afterToward() {
          this.$refs.leftTree.setCheckedKeys([])
          this.$refs.rightTree.setCheckedKeys([])
          console.log(this.leftData, this.rightData)
          this.$emit('getData', {
            leftData: this.leftData,
            rightData: this.rightData,
          })
        },
        // 数据回显
        renderTree() {
          this.leftData = [mockTreeData[1]]
          this.rightData = [mockTreeData[0], mockTreeData[2]]
        },
      },
    }
    script>
    <style lang="less" scoped>
    .transferTreeBox {
      display: flex;
      width: 590px;
      justify-content: space-around;
    
      .SelectBox {
        border: 1px solid #ccc;
        height: 270px;
        width: 200px;
        color: #fff;
        position: relative;
    
        .boxTitle {
          background: #a0cfff;
          height: 30px;
          line-height: 30px;
          text-align: center;
          border-bottom: 1px solid #ccc;
          cursor: pointer;
        }
    
        .boxCenter {
          height: 100%;
          width: 100%;
          max-height: 239px;
          overflow-y: scroll;
        }
      }
    
      .transferBtn {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    
        .pickBtn {
          height: 30px;
          width: 50px;
          background: #a0cfff;
          color: #fff;
          font-weight: 700;
          font-size: 20px;
          border-radius: 5px;
          margin-top: 10px;
          text-align: center;
          line-height: 30px;
          cursor: pointer;
        }
      }
    }
    style>
    
    • 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
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
  • 相关阅读:
    LeetCode题解01_十大排序算法(C/C++实现)
    Linux系统运维脚本:shell脚本查看一定网段范围在线网络设备的ip地址和不在线的网络设备的数量(查看在线和不在线网络设备)
    NaN 的 注意点
    400电话-400电话申请-400电话办理开通服务中心
    7.2-CM46 合法括号序列判断
    【硬件相关】RDMA网络类别及基础介绍
    [JS真好玩] 掘金创作者必备: 用一行JS查看所有文章的转化率,让你知道什么标题才是好标题
    C/C++ 二分查找面试算法题
    形态之间相互变换的两种方法
    Web大学生网页作业成品:基于html制作中国科技发展网站设计题材【航天之路7页】HTML+CSS+JavaScript
  • 原文地址:https://blog.csdn.net/github_35631540/article/details/127965161