mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-05-02 14:01:31 +08:00
feat:新增签到layout
This commit is contained in:
32
Yi.Bbs.Vue3/src/layout/signIn/components/signBody.vue
Normal file
32
Yi.Bbs.Vue3/src/layout/signIn/components/signBody.vue
Normal 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>
|
||||
Reference in New Issue
Block a user