This commit is contained in:
parent
800234bf18
commit
26b02b1ead
|
|
@ -97,7 +97,7 @@
|
|||
</el-form>
|
||||
</el-card>
|
||||
|
||||
<el-card style="margin-top: 20px">
|
||||
<el-card class="content-box" style="margin-top: 20px">
|
||||
<el-row :gutter="10" class="mb8" style="text-align: right">
|
||||
<el-col :span="24">
|
||||
<el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
||||
|
|
@ -553,4 +553,18 @@ body {
|
|||
::v-deep .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
|
||||
background-color: #8decf1;
|
||||
}
|
||||
.content-box {
|
||||
border-radius: 8px;
|
||||
height: calc(100vh - 220px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
::v-deep .el-card__body {
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
height: 100% !important;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -31,7 +31,7 @@
|
|||
|
||||
|
||||
<!-- 流程列表 -->
|
||||
<el-card class="box-card">
|
||||
<el-card class="content-box">
|
||||
<!-- 操作按钮 -->
|
||||
<el-row style="float:right;margin-bottom: 10px">
|
||||
<el-button type="primary" size="small" icon="el-icon-plus" @click="handleAdd">新增流程</el-button>
|
||||
|
|
@ -221,9 +221,23 @@ export default {
|
|||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
<style scoped lang="scss">
|
||||
.box-card {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.content-box {
|
||||
border-radius: 8px;
|
||||
height: calc(100vh - 240px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
overflow: hidden;
|
||||
|
||||
::v-deep .el-card__body {
|
||||
display: flex !important;
|
||||
flex-direction: column !important;
|
||||
height: 100% !important;
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@
|
|||
<el-table
|
||||
:data="projectList"
|
||||
show-overflow-tooltip
|
||||
border stripe height="646"
|
||||
border stripe height="550"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<!--复选列-->
|
||||
|
|
|
|||
Loading…
Reference in New Issue