本文是在element-ui的基礎(chǔ)上優(yōu)化的惭载。
需要操作dom元素描滔,去監(jiān)聽scroll事件踪古,然后當(dāng)下拉滾動觸底就執(zhí)行自己需要的代碼操作券腔。
引用文章: vue指令做滾動加載 監(jiān)聽等
這里我使用的是局部注冊指令纷纫。
directives:{
loadmore:{
inserted: function (el,binding) {
// 獲取element-ui定義好的scroll盒子
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap');
SELECTWRAP_DOM.addEventListener('scroll', function() {
/*
* scrollHeight 獲取元素內(nèi)容高度(只讀)
* scrollTop 獲取或者設(shè)置元素的偏移值,常用于, 計(jì)算滾動條的位置, 當(dāng)一個(gè)元素的容器沒有產(chǎn)生垂直方向的滾動條, 那它的scrollTop的值默認(rèn)為0.
* clientHeight 讀取元素的可見高度(只讀)
* 如果元素滾動到底, 下面等式返回true, 沒有則返回false:
* ele.scrollHeight - ele.scrollTop === ele.clientHeight;
*/
const CONDITION = this.scrollHeight - this.scrollTop <= this.clientHeight;
if(CONDITION) {
binding.value();
}
})
}
}
},
子組件中全部代碼:
<template>
<!-- inputSelect -->
<div>
<el-select
v-model="currentValue"
filterable
remote
reserve-keyword
clearable
placeholder="請輸入關(guān)鍵詞"
:remote-method="remoteMethod"
:loading="loading"
@change="changeValue"
v-loadmore='load'
@focus="focusEvent">
<el-option
v-for="item in list"
:key="item[keyValue]"
:label="item[keyName]"
:value="item[keyValue]">
</el-option>
</el-select>
</div>
</template>
<script>
import axios from 'axios';
export default {
props:['value','keyName','Url','keyValue'],
mounted(){
},
directives:{
loadmore:{
inserted: function (el,binding) {
// 獲取element-ui定義好的scroll盒子
const SELECTWRAP_DOM = el.querySelector('.el-select-dropdown .el-select-dropdown__wrap');
SELECTWRAP_DOM.addEventListener('scroll', function() {
/*
* scrollHeight 獲取元素內(nèi)容高度(只讀)
* scrollTop 獲取或者設(shè)置元素的偏移值,常用于, 計(jì)算滾動條的位置, 當(dāng)一個(gè)元素的容器沒有產(chǎn)生垂直方向的滾動條, 那它的scrollTop的值默認(rèn)為0.
* clientHeight 讀取元素的可見高度(只讀)
* 如果元素滾動到底, 下面等式返回true, 沒有則返回false:
* ele.scrollHeight - ele.scrollTop === ele.clientHeight;
*/
const CONDITION = this.scrollHeight - this.scrollTop <= this.clientHeight;
if(CONDITION) {
binding.value();
}
})
}
}
},
data(){
return{
list:[],
loading:false,
currentValue:this.value,
currentPage:1,
per_page:10,
queryword:'',
canmore:true,
}
},
methods:{
focusEvent(){
this.queryword='';
this.canmore=true;
this.currentPage=1;
this.loading = true;
let data={
page:this.currentPage,
per_page:this.per_page,
}
axios.get(this.Url,{
params: {
...data
},
}).then(res=>{
this.list=res.data.data;
this.loading = false;
})
},
remoteMethod(query){
this.queryword=query;
this.currentPage=1;
if (query !== '') {
this.loading = true;
// 請求數(shù)據(jù)
let data={
page:this.currentPage,
per_page:this.per_page,
}
data[this.keyName]=query;
axios.get(this.Url,{
params: {
...data
},
}).then(res=>{
this.list=res.data.data;
this.loading = false;
})
}
},
changeValue(val){
this.$emit('input',val);
},
load(){
if(!this.canmore){
return
}
this.currentPage++;
// 請求數(shù)據(jù)
let data={
page:this.currentPage,
per_page:this.per_page,
}
data[this.keyName]=this.queryword;
axios.get(this.Url,{
params: {
...data
},
}).then(res=>{
if(res.data.data.length>0){
this.list=this.list.concat(res.data.data);
}else{
this.canmore=false;
}
})
}
}
}
</script>
<style>
</style>
父組件中的引用:
<template>
<div>
<div>
<InputSelect v-model="Selectvalue" keyName='alphabetic_code' keyValue="id" Url='/api/tenant/currencies'></InputSelect>
</div>
</div>
</template>
<script>
import InputSelect from '../components/InputSelect'
export default {
components:{
InputSelect
},
data() {
return {
Selectvalue:"",
}
},
mounted() {
},
methods: {
}
}
</script>
<style>
</style>
最終效果:
下拉滾動請求染簇,以及遠(yuǎn)程搜索選擇只泼。