mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-17 22:56:38 +08:00
33 lines
574 B
Vue
33 lines
574 B
Vue
|
|
<template>
|
||
|
|
<div class="sign-box">
|
||
|
|
<div class="menuList">菜单栏</div>
|
||
|
|
<div class="page">
|
||
|
|
<RouterView />
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script setup></script>
|
||
|
|
|
||
|
|
<style lang="scss" scoped>
|
||
|
|
.sign-box {
|
||
|
|
display: flex;
|
||
|
|
justify-content: space-between;
|
||
|
|
width: 1300px;
|
||
|
|
height: 100%;
|
||
|
|
padding: 20px 0 10px;
|
||
|
|
.menuList {
|
||
|
|
width: 25%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
.page {
|
||
|
|
width: 70%;
|
||
|
|
height: 100%;
|
||
|
|
background-color: #fff;
|
||
|
|
border-radius: 5px;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|