司机端培训资料,关键字接受字段更换,切换优化加loading
This commit is contained in:
@ -36,9 +36,6 @@
|
||||
v-model="keyword"
|
||||
placeholder="名称/关键词/简介"
|
||||
>
|
||||
<!-- <template #button>
|
||||
<van-icon class="search" name="search" size="20" @click="getTrainingList"/>
|
||||
</template>-->
|
||||
</van-field>
|
||||
</template>
|
||||
<template slot="left">
|
||||
@ -104,32 +101,34 @@ export default {
|
||||
this.supplierId = urlParams.get('supplierId');
|
||||
this.driverId = urlParams.get('driverId');
|
||||
if(this.driverId){
|
||||
this.keyword=urlParams.get('keyWord') || ''
|
||||
this.keyword=urlParams.get('keyword') || ''
|
||||
}
|
||||
this.getNormalList()
|
||||
},
|
||||
methods:{
|
||||
onRefresh() {
|
||||
this.getNormalList()
|
||||
setTimeout(() => {
|
||||
if(!this.isLoading){
|
||||
this.$toast('刷新成功');
|
||||
}
|
||||
/* setTimeout(() => {
|
||||
this.$toast('刷新成功');
|
||||
this.isLoading = false;
|
||||
}, 1000);
|
||||
}, 1000);*/
|
||||
},
|
||||
async changeTab(index) {
|
||||
this.activeIndex = index
|
||||
await this.getNormalList()
|
||||
},
|
||||
async getNormalList(){
|
||||
let res= await getNormalList({
|
||||
type:this.supplierId ? 2 : 1,
|
||||
// type:2,
|
||||
id: this.supplierId ? this.supplierId : this.driverId,
|
||||
// id:this.supplierId,//33041,
|
||||
text:this.keyword || '',
|
||||
})
|
||||
this.isLoading = true;
|
||||
this.totalList=[]
|
||||
this.pageList=[]
|
||||
let res= await getNormalList({
|
||||
type:this.supplierId ? 2 : 1,
|
||||
id: this.supplierId ? this.supplierId : this.driverId,
|
||||
text:this.keyword || '',
|
||||
})
|
||||
this.totalList=res.data.list
|
||||
let result=[]
|
||||
if(this.activeIndex === 0){
|
||||
@ -149,6 +148,7 @@ export default {
|
||||
}else {
|
||||
this.showEmpty = false
|
||||
}
|
||||
this.isLoading = false
|
||||
},
|
||||
initShow(){
|
||||
this.keyword= '',
|
||||
|
||||
Reference in New Issue
Block a user