mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-03-19 16:06:36 +08:00
37 lines
654 B
Vue
37 lines
654 B
Vue
<template>
|
|
<div class="sign-box">
|
|
<div class="menuList">
|
|
<ActivityNav/>
|
|
</div>
|
|
<div class="page">
|
|
<RouterView />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import ActivityNav from './ActivityNav.vue'
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.sign-box {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 1300px;
|
|
height: 100%;
|
|
padding: 20px 0 10px;
|
|
.menuList {
|
|
width: 20%;
|
|
height: 100%;
|
|
background-color: #1D1E1F;
|
|
border: 1px solid rgba(0, 255, 136, 0.2);
|
|
}
|
|
.page {
|
|
width: 75%;
|
|
height: 100%;
|
|
border: 1px solid rgba(0, 255, 136, 0.2);
|
|
background-color: #1D1E1F;
|
|
}
|
|
}
|
|
</style>
|