<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
<template> <div class="arrbox"> <!-- 通過visible控制顯示還是隱藏 --> <el-popover v-model="visible" placement="bottom-start" width="auto" > <div slot="reference" class="check-select"> <!-- popper-append-to-body:不需要插入浮動元素,popper-class:設定類名並隱藏 --> <el-select ref="select" v-model="currentval" :style="{width:`${width}px`,height:`${height}`}" multiple :placeholder="placeholder" :popper-append-to-body="false" popper-class="hide-popper" style="width:100%" @visible-change="visibleChange" @focus="getFocus" > <el-option v-for="item in selectItem" :key="`${item.value}_k`" :label="item.label" :value="item.value" /></el-select> </div> <!-- selectBxClick讓select強制選中 --> <div class="selectMain" :style="{'min-width':`${width-20}px`}" @click="selectBxClick"> <div class="seachButton"> <el-select v-model="seachValue" placeholder=" 請選擇篩選" style="width:70%;margin-right:10px;max-width:195px" @visible-change="selectBxClick()" > <el-option v-for="item in seachList" :key="item.value" :value="item.value" :label="item.label" /> </el-select> <div class="btn" @click="seachBtn">搜尋</div> </div> <div class="selectDiv"> <div v-for="item in list.filter(n=>n.value=='all')" :key="item.value" class="list" :class="[currentval.indexOf(item.value)!=-1?'selected':'',item.value=='all'?'allCheck':'']" @click="clickItem(item)">{{ item.label }}</div> <div class="selectDivAuto"> <div v-for="item in list.filter(n=>n.value!='all')" :key="item.value" class="list" :class="[currentval.indexOf(item.value)!=-1?'selected':'',item.value=='all'?'allCheck':'']" @click="clickItem(item)">{{ item.label }}</div> </div> </div> </div> </el-popover> </div> </template>
使用getFocus
獲取是否聚焦,聚焦了讓visible=true
,這樣就可以顯示出自定義的下拉選擇項
通過visibleChange
實施監聽el-select
,控制el-popover
顯示
在點選自定義的下拉選擇項時,通過@click="selectBxClick"
讓el-select
一直聚焦,這樣箭頭就會一直向上
通過 @click="seachBtn"
和getList
獲取列表,具體需要自己去自定義
// 模擬獲取的資料 const seachClickList = [{value: '1',label: '測試1',type: '1'},{value: '2',label: '測試2',type: '1'},{value: '3',label: '測試3',type: '1'},{value: '4',label: '測試4',type: '2'},{value: '5',label: '測試5',type: '2'},{value: '6',label: '測試6',type: '2'},{value: '7',label: '測試7',type: '2'}] export default { model: { prop: 'parentArr', event: 'change-parentArr' }, props: { parentArr: { type: Array, default() { return [] } }, // 傳入選中的item,主要時防止list裡面沒有選中的資料 parentSelectItem: { type: Array, default() { return [] } }, width: { type: Number, default: 300 }, height: { type: Number, default: 30 }, placeholder: { type: String, default: '請輸入' } }, data() { return { seachList: [ { value: '1', label: '條件一' }, { value: '2', label: '條件二' } ], visible: false, currentval: [], list: [], selectItem: [], seachValue: '1' } }, watch: { seachValue: { handler(value) { this.getList(value) }, deep: true, immediate: true }, parentArr: { handler(value) { this.currentval = value }, deep: true, immediate: true }, parentSelectItem: { handler(value) { this.selectItem = value.map(n => { if (n.value == 'all') { n.label = '全部' } return n }) }, deep: true, immediate: true }, currentval: { handler(value) { this.$emit('change-parentArr', value) } } }, created() { }, methods: { getList(value) { this.list = [{ label: '全部', value: 'all' }, ...seachClickList.filter(n => n.type == value)] this.getSelectItem() }, // 獲取選中的item getSelectItem() { const noItemList = this.currentval.map(n => { if (this.selectItem.findIndex(i => i.value == n) == -1) { return n } return null }).filter(n => n != null) noItemList.forEach(item => { const index = this.list.findIndex(i => i.value == item) if (index != -1) { this.selectItem.push(this.list[index]) } }) }, getFocus() { this.visible = true }, visibleChange(data) { this.visible = data }, selectBxClick() { // 避免點選框體時元件消失 this.$refs.select.visible = true }, // 選擇 clickItem(item) { const index = this.currentval.indexOf(item.value) if (index == -1) { if (item.value == 'all') { this.currentval = ['all'] this.selectItem = [{ label: '全部', value: 'all' }] } else { this.currentval.push(item.value) this.selectItem.push(item) const currentvalIndex = this.currentval.indexOf('all') const selectItemIndex = this.selectItem.findIndex(n => n.value == 'all') if (currentvalIndex != -1 && selectItemIndex != -1) { this.selectItem.splice(selectItemIndex, 1) this.currentval.splice(currentvalIndex, 1) } } } else { const itemIndex = this.selectItem.findIndex(n => n.value == item.value) this.selectItem.splice(itemIndex, 1) this.currentval.splice(index, 1) } }, // 搜尋 seachBtn() { this.getList() } } }
selected
屬性使用了el-select
的樣式,讓樣子儘量一致
.arrbox { display: inline-block; } .check-select{ ::v-deep.hide-popper{ display: none; } } ::v-deep .el-input__suffix{ i:not(.el-select__caret){ display: none; } } .selectMain { width: 100%; height: 100%; .seachButton{ width: 100%; align-items: center; display: flex; div.btn{ width: 25%; max-width: 70px; max-width: 80px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #fff; background-color: #409EFF; border-radius: 5px; cursor: pointer; } } .selectDiv{ width: 100%; max-width: 500px; margin-top: 10px; padding: 0 10px 0 0; .list{ width: 100%; padding: 10px 20px 10px 10px; color: #666; cursor: pointer; position: relative; &.selected{ color: #409EFF; &::after{ position: absolute; right: 0px; top: 50%; transform: translateY(-50%); font-family: element-icons; content: "e6da"; font-size: 12px; font-weight: 700; -webkit-font-smoothing: antialiased; } } } .selectDivAuto{ width: calc(100% + 15px); max-height: 300px; overflow-y: auto; .list{ padding: 10px 30px 10px 10px; &.selected::after{ right: 10px; } } } } } .allCheck{ border-bottom: 1px solid rgb(228, 225, 225); }
<template> <seachSelectInput v-model="from.tag" :parentSelectItem='selectItem' :width="302" placeholder="請選擇標籤" /> </template> <script> import seachSelectInput from ./seachSelectInput' export default { components: { seachSelectInput }, data(){ return{ from:{ tag:['1'] }, selectItem:[ { value: '1', label: '測試1' } ] } } }
到此這篇關於ElementUI實現在下拉選單裡面進行搜尋功能的文章就介紹到這了,更多相關ElementUI下拉選單搜尋內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45