2 changed files with 56 additions and 3 deletions
@ -0,0 +1,54 @@ |
|||||
|
<!-- |
||||
|
@ 作者: 秦东 |
||||
|
@ 时间: 2024-04-12 13:06:44 |
||||
|
@ 备注: 页面设置 |
||||
|
--> |
||||
|
<script lang='ts' setup> |
||||
|
|
||||
|
</script> |
||||
|
<template> |
||||
|
<div class="common-layout"> |
||||
|
<el-container> |
||||
|
<el-aside class="asideBox"> |
||||
|
<el-card class="setUpPageMenue" shadow="always"> |
||||
|
11 |
||||
|
|
||||
|
</el-card> |
||||
|
</el-aside> |
||||
|
<el-main> |
||||
|
<el-card class="setUpPageMenue" shadow="always"> |
||||
|
|
||||
|
</el-card> |
||||
|
</el-main> |
||||
|
</el-container> |
||||
|
</div> |
||||
|
</template> |
||||
|
<style lang='scss' scoped> |
||||
|
.common-layout{ |
||||
|
height: calc(100vh - 40px); |
||||
|
.el-main{ |
||||
|
height: calc(100vh - 40px); |
||||
|
padding:0 10px 0 0; |
||||
|
.setUpPageMenue{ |
||||
|
height: calc(100vh - 60px); |
||||
|
margin: 10px 0px 0 0 ; |
||||
|
::v-deep .el-card__body{ |
||||
|
padding: 0; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
.asideBox{ |
||||
|
height: calc(100vh - 40px); |
||||
|
width: 250px; |
||||
|
text-align:center; |
||||
|
.setUpPageMenue{ |
||||
|
width: 230px; |
||||
|
height: calc(100vh - 60px); |
||||
|
margin: 10px 0 0 10px; |
||||
|
::v-deep .el-card__body{ |
||||
|
padding: 0; |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
} |
||||
|
</style> |
||||
Loading…
Reference in new issue