feat:新增签到layout

This commit is contained in:
Xwen
2024-01-11 23:51:09 +08:00
parent 4a0a0e0bb6
commit ae5f63b1ed
5 changed files with 182 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
<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>