修复回收站功能

This commit is contained in:
WangHao 2021-02-07 18:25:30 +08:00
parent db1fae1c4f
commit 60f25fc199

View File

@ -756,9 +756,11 @@
this.bookmarkList = response.rows;
this.total = response.total;
this.loading = false;
this.listloading = false
} else {
this.showbookmark = false;
this.showimg = true;
this.listloading = false
}
});
},
@ -770,9 +772,11 @@
this.bookmarkList = response.rows;
this.total = response.total;
this.loading = false;
this.listloading = false
} else {
this.showbookmark = false;
this.showimg = true;
this.listloading = false
}
});
},
@ -839,6 +843,16 @@
getListConcat(){
var that=this;
this.loading = true;
if(this.queryParams.menuId=='BOOKMARK'){
//
this.getBookmarkList();
return;
}else if (routedata == 'RECYCLE') {
//
this.getrecycleList();
}else{
selectBymenuIdUserID(this.queryParams).then(response => {
if (response.code == 200) {
this.bookmarkList = this.bookmarkList.concat(response.rows);
@ -853,6 +867,10 @@
this.loading = false;
}
});
}
},
/** 查询便签管理列表 */