美文网首页vue
vue el-select 下拉数据过多 打开慢 过滤数据

vue el-select 下拉数据过多 打开慢 过滤数据

作者: 徐福瑞 | 来源:发表于2021-01-12 16:52 被阅读0次

:filter-method="filterMethod" 添加 搜索绑定方法

<el-select :filter-method="filterMethod" size="mini" filterable v-model="doctorTemp.icd_ids" multiple placeholder="请选择ICD">
   <el-option v-for="item in changeIcd" :key="item.value" :label="item.label" :value="item.value"> 
   </el-option>
</el-select>
 filterMethod(query) { // ICD出院诊断搜索过滤
                    //query是输入的关键字
                    if (query == '') {
                        this.changeIcd = icd.slice(0, 100) //过滤未选择时只显示100条
                    } else {
                        let result = [] //存储符合条件的下拉选项
                        this.icd.forEach(val => {
                            if (val.label.indexOf(query) != -1) result.push(val)
                        })
                        this.changeIcd = result.slice(0, 100) //只取前100个
                    }
                },
data:function(){
changeIcd: [],
}
 getSelect() {
                    axios.post('/', {
                            'subscript': 'gender,document_type,fee_source,policy_status,in_hospital_type,advance_type,judge,close_reason,qa_template,quality_project,shift_over_type,caller_identity,liyou',
                            'other': 'nationality,doctor,all_users,icd,project_id'
                        })
                        .then(function(response) {
                            var array = ['gender', 'document_type', 'fee_source', 'policy_status', 'in_hospital_type', 'close_reason', 'advance_type', 'judge', 'qa_template', 'quality_project', 'shift_over_type', 'caller_identity', 'liyou', 'nationality', 'doctor', 'all_users', 'icd'];
                            for (i in array) {
                                that[array[i]] = response.data.data[array[i]];
                            }

                            //保留原数据  另赋值数据
                            that.changeIcd = that.icd
//截取100
                            that.changeHospital_id = that.hospital_id.slice(0, 100)



                            that.qa_template = response.data.data['project_id'];
                        })
                        .catch(function(error) {});
                    axios.post('/', {})
                        .then(function(response) {
                            that.qa_first_level = response.data.data.first_level;
                            that.qa_second_level = response.data.data.second_level;
                        })
                        .catch(function(error) {});
                },

相关文章

  • vue el-select 下拉数据过多 打开慢 过滤数据

    :filter-method="filterMethod" 添加 搜索绑定方法

  • Vue:解决 element-ui 下拉框过多导致卡顿问题

    标签: Vue element-ui 原因:下拉框数据过多,若渲染全部数据,会导致 DOM 数量太多,操作卡顿。 ...

  • Vue-04

    过滤器:对显示在页面上的数据进行筛选 全局过滤器 和Vue同级 Vue.filter(“过滤器名称”,func...

  • Vue 下拉刷新数据

    思路 使用directives来绑定监听元素 通过el获取到元素,添加监听事件 在回调中写对滚动事件的处理 数据的...

  • Vue部分基础知识点总结

    Vue基础知识点: 1.Vue:过滤html标签 ----{{{数据名}}}. 2.Vue:单次插值语法: ...

  • vue之自定义过滤器(六)

    一、过滤器介绍:1、在Vue中会通过过滤器(Filters)来渲染数据,使视图可读性更加优雅。2、Vue中的过滤器...

  • Vue1.0学习小结1

    目录 什么是Vue? 常用指令 事件 属性 class和style 过滤器 数据交互 1. 什么是Vue? vue...

  • Vue学习笔记之过滤器 filter

    前言 Vue的过滤器,了解一下? 过滤器,顾名思义,字面意思就是将一种数据经过加工过滤成另外一种数据。 常见的业务...

  • 06Vue.js过滤器与计算属性

    过滤器使用方法 过滤器是一个通过输入数据,能够及时对数据进行处理并返回一个数据结果的简单函数。Vue有很多很便利的...

  • combobox 下拉列表框

    1:如果下拉列表框数据过多,注释掉data-options='panelHeight="auto"' 就好了,会在...

网友评论

    本文标题:vue el-select 下拉数据过多 打开慢 过滤数据

    本文链接:https://www.haomeiwen.com/subject/jwleaktx.html