|
@@ -385,20 +385,34 @@ export default {
|
|
|
watch:{
|
|
|
searchTitle(newVal){
|
|
|
let data = null
|
|
|
- this.publicList.forEach((item)=>{
|
|
|
+ let search='private'
|
|
|
+ this.privateList.forEach((item)=>{
|
|
|
item.children.forEach(i=>{
|
|
|
- if(i.PptId===newVal){
|
|
|
- data = i
|
|
|
- }
|
|
|
+ if(i.PptId===newVal){
|
|
|
+ data = i
|
|
|
+ search='private'
|
|
|
+ }
|
|
|
})
|
|
|
})
|
|
|
- this.default_tab = '3';
|
|
|
- //选中该节点
|
|
|
- this.$refs.publicTree.setCurrentKey('ppt'+newVal)
|
|
|
- //展开该节点的父节点...
|
|
|
- const node = this.$refs.publicTree.getCurrentNode()
|
|
|
- this.publicExpandKeys.push(node.catalogId)
|
|
|
- this.nodeChange(data,_,'public')
|
|
|
+ if(!data){
|
|
|
+ this.publicList.forEach((item)=>{
|
|
|
+ item.children.forEach(i=>{
|
|
|
+ if(i.PptId===newVal){
|
|
|
+ data = i
|
|
|
+ search='public'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ if(data){
|
|
|
+ this.default_tab = search==='public'?'3':'1';
|
|
|
+ //选中该节点
|
|
|
+ this.$refs[`${search}Tree`].setCurrentKey('ppt'+newVal)
|
|
|
+ //展开该节点的父节点...
|
|
|
+ const node = this.$refs[`${search}Tree`].getCurrentNode()
|
|
|
+ this[`${search}ExpandKeys`].push(node.catalogId)
|
|
|
+ this.nodeChange(data,_,search)
|
|
|
+ }
|
|
|
this.searchOptions=[]
|
|
|
},
|
|
|
/* default_tab(newVal){
|
|
@@ -1055,7 +1069,7 @@ export default {
|
|
|
//搜索ppt标题
|
|
|
searchHandle(keyword){
|
|
|
//searchPPT->searchPPTByKeyWorld
|
|
|
- pptInterface.searchPPTByKeyWorld({
|
|
|
+ pptInterface.searchPPTByKeyWorldV2({
|
|
|
Keyword:keyword
|
|
|
}).then(res=>{
|
|
|
if(res.Ret===200){
|
|
@@ -1259,7 +1273,7 @@ export default {
|
|
|
height: 0;
|
|
|
}
|
|
|
.el-tabs__item.is-active {
|
|
|
- border-bottom: 2px solid #409EFF;
|
|
|
+ border-bottom: 2px solid #0052D9;;
|
|
|
}
|
|
|
.el-tabs__item { font-size: 16px; }
|
|
|
.ppt-list-wrap{
|
|
@@ -1375,7 +1389,7 @@ export default {
|
|
|
h3{
|
|
|
span{
|
|
|
margin-left: 20px;
|
|
|
- color:#409EFF;
|
|
|
+ color:#0052D9;;
|
|
|
font-size: 12px;
|
|
|
font-weight: normal;
|
|
|
}
|