|
@@ -1201,7 +1201,17 @@ export default {
|
|
|
|
|
|
if(this.classifyShowType==='shared') { //共享列表
|
|
if(this.classifyShowType==='shared') { //共享列表
|
|
res = await edbBaseV2Interface.getSharedEdbList({
|
|
res = await edbBaseV2Interface.getSharedEdbList({
|
|
- FilterSource: this.currentTreeName==='sharedReceive' ? 1 : 0
|
|
|
|
|
|
+ FilterSource: this.currentTreeName==='sharedReceive' ? 1 : 0,
|
|
|
|
+ PageSize:this.PageSize,
|
|
|
|
+ CurrentIndex:this.CurrentIndex,
|
|
|
|
+ ClassifyId:this.select_classifyId,
|
|
|
|
+ })
|
|
|
|
+ }else if(this.classifyShowType==='own'&&this.currentTreeName==='collect'){ //收藏列表
|
|
|
|
+ res = await edbCollectInterface.getCollectEdb({
|
|
|
|
+ PageSize:this.PageSize,
|
|
|
|
+ CurrentIndex:this.CurrentIndex,
|
|
|
|
+ ClassifyId:this.select_classifyId,
|
|
|
|
+ KeyWord: '',
|
|
})
|
|
})
|
|
}else{// 列表走es
|
|
}else{// 列表走es
|
|
|
|
|
|
@@ -1212,17 +1222,12 @@ export default {
|
|
EdbAuth = 2;
|
|
EdbAuth = 2;
|
|
}
|
|
}
|
|
|
|
|
|
- let EdbCollect = 0;
|
|
|
|
- if(this.classifyShowType==='own'&&this.currentTreeName==='collect') {
|
|
|
|
- EdbCollect = 1
|
|
|
|
- }
|
|
|
|
let params = {
|
|
let params = {
|
|
PageSize:this.PageSize,
|
|
PageSize:this.PageSize,
|
|
CurrentIndex:this.CurrentIndex,
|
|
CurrentIndex:this.CurrentIndex,
|
|
ClassifyId:this.select_classifyId,
|
|
ClassifyId:this.select_classifyId,
|
|
KeyWord: this.search_txt,
|
|
KeyWord: this.search_txt,
|
|
- EdbType: EdbCollect===1 ? '0' : (this.isBasicBase?'1':'2'),
|
|
|
|
- EdbCollect,
|
|
|
|
|
|
+ EdbType: this.isBasicBase?'1':'2',
|
|
EdbAuth
|
|
EdbAuth
|
|
}
|
|
}
|
|
|
|
|
|
@@ -1239,7 +1244,7 @@ export default {
|
|
this.IsListEnd = res.Data.Paging.IsEnd
|
|
this.IsListEnd = res.Data.Paging.IsEnd
|
|
}
|
|
}
|
|
|
|
|
|
- if(type==='pageChange'){
|
|
|
|
|
|
+ if(type==='pageChange'&&this.isBasicBase){
|
|
//页码变化 选中项不做清空
|
|
//页码变化 选中项不做清空
|
|
this.$refs.edbTableListRef && this.$nextTick(() => {
|
|
this.$refs.edbTableListRef && this.$nextTick(() => {
|
|
this.$refs.edbTableListRef.checkedSomeSelection()
|
|
this.$refs.edbTableListRef.checkedSomeSelection()
|