|
@@ -78,25 +78,25 @@
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="inner-right" v-if="addOnlineWordFlag" >
|
|
<div class="inner-right" v-if="addOnlineWordFlag" >
|
|
- <simple-sheet :type="type" @save="handleSave()" :id="tmpId" :isCreater="isCreater"/>
|
|
|
|
|
|
+ <simple-sheet :type="type" @save="handleSave()" :id="tmpId" :mkdirId="params.mkdirId" :isCreater="isCreater"/>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="inner-right" v-show="workListFlag">
|
|
<div class="inner-right" v-show="workListFlag">
|
|
<div class="search">
|
|
<div class="search">
|
|
- <span>部门工作清单</span>
|
|
|
|
|
|
+ <span>{{ catalogueName }}</span>
|
|
</div>
|
|
</div>
|
|
<div style="margin-bottom: 10px;margin-top: 10px;">
|
|
<div style="margin-bottom: 10px;margin-top: 10px;">
|
|
<el-button
|
|
<el-button
|
|
v-if="checkedNode && checkedNode.length === 2"
|
|
v-if="checkedNode && checkedNode.length === 2"
|
|
type="primary"
|
|
type="primary"
|
|
size="mini"
|
|
size="mini"
|
|
- @click="addFile('addFile','')"
|
|
|
|
|
|
+ @click="addFile('addFile',{delFlag:'1'})"
|
|
style="width: 80px"
|
|
style="width: 80px"
|
|
>
|
|
>
|
|
新建
|
|
新建
|
|
</el-button>
|
|
</el-button>
|
|
</div>
|
|
</div>
|
|
- <div class="tabbox">
|
|
|
|
|
|
+ <div class="tabBoxClass">
|
|
<el-table
|
|
<el-table
|
|
height="calc(100% )"
|
|
height="calc(100% )"
|
|
class="com-table"
|
|
class="com-table"
|
|
@@ -254,6 +254,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ catalogueName:"部门工作清单",
|
|
isCreater:"0",//1:创建者 0:非创建者
|
|
isCreater:"0",//1:创建者 0:非创建者
|
|
addDialogStatus: false,
|
|
addDialogStatus: false,
|
|
tooltit: "部门工作清单",
|
|
tooltit: "部门工作清单",
|
|
@@ -464,6 +465,7 @@ export default {
|
|
this.getParent(node, clickNode)
|
|
this.getParent(node, clickNode)
|
|
this.checkedNode = clickNode
|
|
this.checkedNode = clickNode
|
|
if (clickNode.length === 2){
|
|
if (clickNode.length === 2){
|
|
|
|
+ this.catalogueName = clickNode[1].name + '-' + clickNode[0].name
|
|
this.params.mkdirId = clickNode[0].id + ''
|
|
this.params.mkdirId = clickNode[0].id + ''
|
|
this.getList(this.params, this.pageSize);
|
|
this.getList(this.params, this.pageSize);
|
|
}
|
|
}
|
|
@@ -760,6 +762,9 @@ export default {
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
// border-left: 1px solid #ddd;
|
|
// border-left: 1px solid #ddd;
|
|
height: calc(100vh - 220px);
|
|
height: calc(100vh - 220px);
|
|
|
|
+ .tabBoxClass {
|
|
|
|
+ height: calc(100% - 85px);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|