|
@@ -34,32 +34,33 @@
|
|
|
<div class="rightDetail">
|
|
|
<div class="rightDetailtop">访问量明细</div>
|
|
|
<div class="rightDetailBottom" v-if="interface==0">
|
|
|
- 组织路径:{{showData.organization}} </br>
|
|
|
- 总访问量: {{showData.total}} </br>
|
|
|
- 知识仓库访问量:{{showData.knowledge}} </br>
|
|
|
- 知识专辑访问量:{{showData.album}} </br>
|
|
|
- 知识地图访问量:{{showData.map}} </br>
|
|
|
- 搜索服务访问量:{{showData.search}}
|
|
|
+ <p style="margin-bottom: 16px;">组织路径:{{showData.organization?showData.organization:'--'}}</p>
|
|
|
+ 总访问量: {{showData.total?showData.total:'--'}} </br>
|
|
|
+ 知识仓库访问量:{{showData.knowledge?showData.knowledge:'--'}} </br>
|
|
|
+ 知识专辑访问量:{{showData.album?showData.album:'--'}} </br>
|
|
|
+ 知识地图访问量:{{showData.map?showData.map:'--'}} </br>
|
|
|
+ 搜索服务访问量:{{showData.search?showData.search:'--'}}
|
|
|
</div>
|
|
|
<div class="rightDetailBottom" v-if="interface==1">
|
|
|
- 组织路径:{{showData.organization}} </br>
|
|
|
- 知识总量: {{showData.total}} </br>
|
|
|
- 文档知识数量:{{showData.archive}} </br>
|
|
|
- 维基知识数量:{{showData.wiki}}
|
|
|
+ <p style="margin-bottom: 16px;">组织路径:{{showData.organization?showData.organization:'--'}}</p>
|
|
|
+ 知识总量: {{showData.total?showData.total:'--'}} </br>
|
|
|
+ 文档知识数量:{{showData.archive?showData.archive:'--'}} </br>
|
|
|
+ 维基知识数量:{{showData.wiki?showData.wiki:'--'}}
|
|
|
</div>
|
|
|
<div class="rightDetailBottom" v-if="interface==2">
|
|
|
- 组织路径:{{showData.organization}} </br>
|
|
|
- 专辑创建总量: {{showData.album}} </br>
|
|
|
- 专辑访问量pv:{{showData.pv}}
|
|
|
+ <p style="margin-bottom: 16px;">组织路径:{{showData.organization?showData.organization:'--'}}</p>
|
|
|
+ 专辑创建总量: {{showData.album?showData.album:'--'}} </br>
|
|
|
+ 专辑访问量pv:{{showData.pv?showData.pv:'--'}}
|
|
|
</div>
|
|
|
<div class="rightDetailBottom" v-if="interface==3">
|
|
|
- 组织路径:{{showData.organization}} </br>
|
|
|
- 地图创建总量: {{showData.map}} </br>
|
|
|
- 地图访问量pv:{{showData.pv}}
|
|
|
+ <p style="margin-bottom: 16px;">组织路径:{{showData.organization?showData.organization:'--'}}</p>
|
|
|
+ 地图创建总量: {{showData.map?showData.map:'--'}} </br>
|
|
|
+ 地图访问量pv:{{showData.pv?showData.pv:'--'}}
|
|
|
</div>
|
|
|
<div class="rightDetailBottom" v-if="interface==4">
|
|
|
- 组织路径:{{showData.organization}} </br>
|
|
|
+ <p style="margin-bottom: 16px;">组织路径:{{showData.organization?showData.organization:'--'}}</p>
|
|
|
<p v-for="(item,index) in showData.item">{{item.name}}: {{item.value}} </p>
|
|
|
+ <p v-if="checkId==null">--</p>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -163,6 +164,8 @@ export default {
|
|
|
//重置
|
|
|
handleResetClick(){
|
|
|
this.searchValue=''
|
|
|
+ this.checkId=null
|
|
|
+ this.showData={}
|
|
|
this.getTreeData()
|
|
|
},
|
|
|
//组织结构
|
|
@@ -239,9 +242,12 @@ export default {
|
|
|
line-height:54px;
|
|
|
}
|
|
|
.rightDetailBottom{
|
|
|
+ padding-top: 26px;
|
|
|
text-align: center;
|
|
|
- line-height: 30px;
|
|
|
+ line-height: 40px;
|
|
|
background: #fff;
|
|
|
height: calc(100% - 54px);
|
|
|
+ overflow: auto;
|
|
|
+ font-size: 14px;
|
|
|
}
|
|
|
</style>
|