首页 > 其他分享 >el-tree 根据多个结果筛选树状图

el-tree 根据多个结果筛选树状图

时间:2023-04-24 17:26:58浏览次数:39  
标签:el police val 树状 lxdh tree value && data

右侧搜索根据条件查找到对应人,人再查询到对应部门。

<template>
    <div class="contact_tree">
        <el-input v-model="filterText" size="small" placeholder="名称和电话过滤" clearable />
        <el-tree class="contact_tree1" :data="tree" node-key="id" ref="tree" default-expand-all
            :filter-node-method="filterNode" :expand-on-click-node="false" @node-click="nodeClick">
            <template #default="{ data }">
                <span class="custom-tree-node">
                    <p class="tree_name" :title="data.lxdh ? `联系电话:${data.lxdh}` : ''">{{ data.value }} {{ data.lxdh ?
                        `(${data.lxdh})` : "" }}</p>
                    <el-button style="position: absolute;right: 12px;" v-if="data.lxdh" type="text"
                        @click.stop="callDH(data)">呼叫</el-button>
                </span>
            </template>
        </el-tree>
    </div>
    <div class="contact_list">
        <el-input v-model="filterPolice" placeholder="名称和电话过滤" clearable size="small" />
        <div style="margin-top: 10px;">
            <el-table :data="list" height="400" border style="width: 100%">
                <el-table-column prop="yhmc" label="名称" width="130"> </el-table-column>
                <el-table-column prop="lxdh" label="联系电话">
                    <template #default="scope">
                        <div v-if="scope.row.lxdh">
                            {{ scope.row.lxdh }}
                            <el-button v-show="scope.row.lxdh" link type="text" size="small"
                                @click="callDH(scope.row)">呼叫</el-button>
                        </div>
                        <div v-else>暂无号码</div>
                    </template>
                </el-table-column>
            </el-table>
        </div>
    </div>
</template>

<script>
    import { mapGetters, mapState } from "vuex";
    import { setStore, getStore, clearStore } from "@/util/store";
    import { read, utils } from "xlsx";
    export default {
        data() {
            return {
                tree: [],
                outTree: [],
                list: [],
                outList: [],
                police: {},
                filterText: "",
                filterPolice: "",
                currNode: "",
                currNode2: "",
                activeTab: "1",
                addVis: false,
                importExcel: [],
                uploadShow: true,
                formFZ: {
                    fid: "",
                    mc: "",
                },
                formDW: {
                    ssfzid: "",
                    dwmc: "",
                    lxdh: "",
                },
                formRY: {
                    fid: "",
                    lxrmc: "",
                    lxdh: "",
                    lxdz: "",
                },
                rules: {
                    mc: [{ required: true, message: "请输入分组名称", trigger: "blur" }],
                    dwmc: [{ required: true, message: "请输入单位名称", trigger: "blur" }],
                    lxrmc: [{ required: true, message: "请输入联系人名称", trigger: "blur" }],
                    lxdh: [{ required: true, message: "请输入联系电话", trigger: "blur" }],
                },
            };
        },
        mounted() {
            this.$store.dispatch("contacts/getDept").then((v) => {
                this.tree = v;
            });
            let police = getStore({ name: "policeman" });
            police.forEach((v) => {
                this.police[v.dwbh] ? "" : (this.police[v.dwbh] = []);
                if (v.yhmc) this.police[v.dwbh].push(v);
            });
            this.getFZList();
        },
        watch: {
            filterText(val) {
                this.$refs.tree.filter(val);
            },
            filterPolice(val) {
                this.filterDeptByKeywold(val);
            },
        },
        methods: {
            callDH(row) {
                if (row && row.lxdh) this.$emitter.emit("changeDHHM", row.lxdh);
                else this.$message.warning("暂无电话");
            },
            closeBox() {
                this.$store.commit("contacts/SET_CONTACTSVIS", false);
            },
            getList(val) {
                if (val) {
                    let arr = this.police[this.currNode] || [];
                    this.list = arr.filter((v) => {
                        return (v.yhmc && v.yhmc.indexOf(val) !== -1) || (v.lxdh && v.lxdh.indexOf(val) !== -1);
                    });
                } else {
                    this.list = this.police[this.currNode] || [];
                }
            },
            filterNode(value, data) {
                if (!value) return true;

                // 根据右边的数组对象结果筛选左边的部门
                if (Object.prototype.toString.call(value) === "[object Array]") {
                    let target = value.find((s) => s.dwbh === data.key);
                    if (target) {
                        return true;
                    }
                }

                let is = data.value.indexOf(value) !== -1 || (data.lxdh && data.lxdh.indexOf(value) !== -1);
                return is;
            },
            // 根据关键字查找右侧联系人并找到对应的部门
            filterDeptByKeywold(val) {
                if (val) {
                    // 根据keyword查找指定对象
                    let temp = [];
                    for (const key in this.police) {
                        if (Object.hasOwnProperty.call(this.police, key)) {
                            const item = this.police[key];
                            let target = item.filter((s) => (s.lxdh && s.lxdh.includes(val)) || (s.yhmc && s.yhmc.includes(val)));
                            if (target) {
                                temp = temp.concat(target);
                            }
                        }
                    }
                    this.list = temp;
                    // 查找到则去找到对应部门,未查找到则重置左侧部门数据
                    if (this.list.length === 0) {
                        this.$refs.tree.filter("");
                    } else {
                        this.$refs.tree.filter(this.list);
                    }
                    console.log(this.list, "this.list");
                } else {
                    this.$refs.tree.filter(val);
                    this.list = [];
                }
            },
            nodeClick(data) {
                this.currNode = data.key;
                this.getList();
            },
            // 外部过滤
            filterNode2(value, data) {
                if (!value) return true;
                let is = (data.mc && data.mc.indexOf(value) !== -1) || (data.dwmc && data.dwmc.indexOf(value) !== -1) || (data.lxdh && data.lxdh.indexOf(value) !== -1);
                return is;
            },
            nodeClick2(data) {
                if (data && data.lx == "0") {
                    this.currNode2 = data;
                    this.filterPolice2 = "";
                    this.getRYList();
                } else {
                    this.$store.commit("contacts/SET_WBLISTRY", []);
                }
            },
            // 获取左侧分组
            getFZList() {
                this.$store.dispatch("contacts/getTXLDW").then((v) => { });
            },
            // 获取右侧联系人
            getRYList() {
                this.$store
                    .dispatch("contacts/getTXLRY", {
                        dwid: this.currNode2.id,
                        keyWord: this.filterPolice2,
                    })
                    .then((v) => { });
            },
        },
    };

标签:el,police,val,树状,lxdh,tree,value,&&,data
From: https://www.cnblogs.com/lbx6935/p/17350217.html

相关文章

  • Element 级联选择器(Cascader)点击文字(或者一行)选中样式回显
    预览图实现的效果1、选中最后一级,下拉框收缩2、下拉框的每一行点击都可以选中3、点击radio,也能实现选中最后一级,下拉框收缩组件代码<el-cascaderref="cascaderHandleRef"v-model="languageIds"class="width-260":options="languageList":props="{check......
  • Go语言介绍、Go开发环境搭建、第一个helloworld、变量命名规范、变量的定义和使用
    目录1Go语言介绍2Go开发环境搭建3第一个helloworld4变量命名规范5变量的定义和使用1Go语言介绍#Go语言介绍Go即Golang,是Google公司2009年11月正式对外公开的一门编程语言Go是【静态强类型】语言,是区别于解析型语言的编译型语言(静态:类型固定强类型:不同类型不允许直接......
  • excel的练习1--自定义单元格格式(win11)
    题目1.4自定义单元格格式。在EXCEL单元格区域设置自定义数字格式,实现如下效果:在该区域的任意单元格输入数字1,则显示为√,其他数据原样显示。则:1.格式定义形式为【1】.【提示:格式-单元格格式-自定义】2.格式定义之后得到的结果B4:F10复制粘贴为文本到第【2】空。答案步骤选......
  • echarts treemap当份额太小时文字显示不全,解决为垂直显示全部文字
    before:after:解决: ......
  • celery传参时的对象转换
    遇到一个有趣的问题,celerydelay传入SSH的对象时,报错ObjectoftypeSSHisnotJSONserializable,分析一下就是只能传json的数据。把所有传入的数据都转成json。1、因为我传递的是对象,所以要把对象转成json,所以我就自定义了一个JSONEncoderclassMyEncoder(json.JSONEncoder):......
  • electron鼠标经过托盘显示自定义菜单
    1.自定义菜单//自定义菜单vartemplateMenu=[{label:"首页",submenu:[{label:"111"},{label:'9089'}]},,{label:"编辑",submenu:[{label:'123'}]}]testmenu=Menu.buil......
  • python mysql eXCEL
    importreimportpymysqlimportrequestsfrombs4importBeautifulSoupimportlxmlimportsys,ioimportopenpyxl#数据库信息host='192.168.56.101'username="root"passwd="123456"database="test"port=3306ch......
  • openEuler Developer Day 2023 电力行业技术创新及应用论坛成功举办
    开放原子开源基金会旗下openEuler社区发起的顶级开发者峰会——openEulerDeveloperDay2023于4月20日-21日在上海召开。麒麟信安作为openEuler项目群白金捐赠人,联合主办本次盛会,并与华为共同承办2023电力行业技术创新及应用论坛。120余位电力行业用户代表、专家、openEuler社......
  • vue3 自定义组件双向绑定(modelValue)
    参考链接:https://huaweicloud.csdn.net/638edf68dacf622b8df8d152.html父组件:<Customabcref="editor"v-model="data.introduction":min-height="400"name="职能"placeholder="请编辑"/>子组件<divclass="tinymc......
  • 第五讲 Weldentity分布式身份解决方案、智能合约初探
    什么是智能合约1996年,NickSzabo在文章《SmartContracts:BuildingBlocksForDigitalMarkets》中提出了智能合约的概念所谓“合约”,就是条文、合同一类的东西,里面记录了发生的条件与对应执行的条款,以支持确权等操作;所谓”智能”,就意味着自动化、可编程。所以,智能合约就是......