Authored by 王涛

问题十六:文档回收站右侧显示文档管理

@@ -4,7 +4,9 @@ @@ -4,7 +4,9 @@
4 <div style="border-radius: 3px;background-color: white" 4 <div style="border-radius: 3px;background-color: white"
5 :style="{'height':height+'px','max-height':height + 'px','overflow':'auto'}"> 5 :style="{'height':height+'px','max-height':height + 'px','overflow':'auto'}">
6 <div style="text-align: left;padding-left: 10px;padding-top: 3px;font-weight: bold"> 6 <div style="text-align: left;padding-left: 10px;padding-top: 3px;font-weight: bold">
  7 + <slot name="title">
7 <el-link type="info" :underline="false"><i class="iconfont icon-ziliaoku"></i> 文档管理</el-link> 8 <el-link type="info" :underline="false"><i class="iconfont icon-ziliaoku"></i> 文档管理</el-link>
  9 + </slot>
8 </div> 10 </div>
9 <!----> 11 <!---->
10 <el-tree ref="tree" style="padding:6px;" :props="props" :data="treeData" node-key="id" 12 <el-tree ref="tree" style="padding:6px;" :props="props" :data="treeData" node-key="id"
1 <div class="container"> 1 <div class="container">
2 - <cm-document :isRecycle="true"></cm-document> 2 + <cm-document :isRecycle="true">
  3 + <template #title>
  4 + <el-link type="info" :underline="false"><i class="iconfont icon-ziliaoku"></i> 文档回收站</el-link>
  5 + </template>
  6 + </cm-document>
3 </div> 7 </div>