• vue+Select+Tree实现单选 默认选中全部


    在这里插入图片描述

    实现的功能如图,Select实现tree的单选,默认选择全部。
    在这里插入图片描述
    选择tree的数据后则关闭选择器。

    代码如下
    这里用的View Design+vue实现的

    <template>
      <div class="my-tree">
        <FormItem :label="companyName">
          <Select v-model="companyTree" :id="setTreeId" @on-change="changeOpt">
            <Option
              :key="treeId"
              :value="treeId"
              :label="treeName"
              style="height: auto"
              hidden
            />
            <Option value="ALL">全部</Option>
            <Tree :data="treeData" @on-select-change="selectTreeData" />
          </Select>
        </FormItem>
      </div>
    </template>
    
    <script>
    export default {
      name: "MyTree",
      data() {
        return {
          treeData: [], //树的数据
          treeId: "", //树回显Id
          treeName: "", //树回显名称
          companyTree: "ALL"
        };
      },
      props: {
        //名字
        companyName: {
          type: String,
          default: () => {
            return "树形下拉选择框";
          }
        },
        //一个页面多个下拉框,唯一id
        setTreeId: {
          type: String,
          default: "selectTree"
        }
      },
      created() {
        this.treeData = [
          {
            title: "四川省",
            id: "sichuan",
            expand: true,
            children: [
              {
                title: "成都市",
                id: "chengdu",
                expand: true,
                children: [
                  {
                    title: "高新区",
                    id: "gaoxin"
                  },
                  {
                    title: "金堂",
                    id: "jitang"
                  }
                ]
              },
              {
                title: "资阳市",
                id: "ziyang",
                expand: true,
                children: [
                  {
                    title: "安岳县",
                    id: "anyue"
                  }
                ]
              }
            ]
          }
        ];
      },
      methods: {
        //选择树
        selectTreeData(val) {
            if (!val[0].id) {
              return;
            }
            this.treeName = val[0].title;
            this.treeId = val[0].id;
            this.companyTree = val[0].id;
      
          console.log(val);
          this.$emit("treeVal", val);
    
          //下拉选择后关闭选择的树
          let selectTree = document.getElementById(`${this.setTreeId}`);
          selectTree.lastElementChild.style.display = "none";
        },
        changeOpt(val) {
          this.$emit("treeVal", val);
        }
      }
    };
    </script>
    
    <style lang='less' scoped>
    .my-tree {
    }
    </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

    看打印结果
    在这里插入图片描述

    最后父组件用@treeVal方法接接收传过来的值就可以啦

  • 相关阅读:
    2022Java后端实习春招面试题整理(含答案) 备战秋招
    yolact ncnn保姆级源码解读(结合paper)
    linux下实现电脑开机后软件自启动
    大数据学习(18)-任务并行度优化
    linux笔记(2):vscode插件remote WSL远程使用交叉编译工具链(全志D1-H)
    jpg格式图片无法打开可以修复吗?有哪些方法?
    计算机起源(二)
    2022-08-21 星环科技-C++开发笔试
    Cy7 Tyramide,Tyramide-Cy7,花青素Cy7 酪酰胺,Cy7酪胺
    Mysql学习积累
  • 原文地址:https://blog.csdn.net/Jet_Lover/article/details/125616288