91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

ElementUI怎么實現在下拉列表里面進行搜索功能

發布時間:2023-05-09 17:00:50 來源:億速云 閱讀:278 作者:iii 欄目:開發技術

這篇文章主要講解了“ElementUI怎么實現在下拉列表里面進行搜索功能”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“ElementUI怎么實現在下拉列表里面進行搜索功能”吧!

分析:

ElementUI怎么實現在下拉列表里面進行搜索功能

  1. 首先我們需要實現上圖的效果,然后Element-UI的el-select是沒有的,所以需要自己寫

  2. 我們需要用到el-popover組件,然后使用它的v-model="visible"來實現控制顯示

  3. 我們在el-popover的slot="reference" 放一個el-select

    1. 使用popper-append-to-body="false"不需要插入浮動元素

    2. 使用popper-class="hide-popper"定義浮窗class為hide-popper,并設置display:none,這樣選中了就不會存在el-select的下拉選項

    3. el-option 循環下面選擇的list里面的元素,這樣就可以在el-select展示選中的并存在刪除

    4. el-select雙向綁定的就是自定義選擇的數組

html:

<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"
			:
			multiple
			:placeholder="placeholder"
			:popper-append-to-body="false"
			popper-class="hide-popper"
			
			@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" : @click="selectBxClick">
			<div class="seachButton">
			<el-select
				v-model="seachValue"
				placeholder=" 請選擇篩選"
				
				@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>

js:

使用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()
		}
	}
	}

css:

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怎么實現在下拉列表里面進行搜索功能這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

文登市| 错那县| 睢宁县| 丽江市| 昔阳县| 衡阳县| 察隅县| 华蓥市| 曲松县| 周口市| 长宁区| 阿拉善右旗| 乐都县| 旌德县| 湛江市| 延川县| 武义县| 雅安市| 南涧| 洮南市| 会理县| 双牌县| 台山市| 雅安市| 贵港市| 宜城市| 禹州市| 五指山市| 阿瓦提县| 长治县| 博乐市| 星座| 扶沟县| 凤城市| 嘉义县| 江华| 平塘县| 康平县| 阳朔县| 泊头市| 北海市|