登录页开发,控制台页面开发,页面跳转逻辑调整

This commit is contained in:
sswiki
2024-12-24 22:50:32 +08:00
parent e9f1c3b5cf
commit 91bad1a059
24 changed files with 1020 additions and 111 deletions

View File

@@ -0,0 +1,32 @@
<template>
<div class="space-create-box">
<CreateRow></CreateRow>
</div>
<div class="space-view-box">
<Whole></Whole>
</div>
</template>
<script setup>
import CreateRow from './space/CreateRow.vue'
import Whole from './space/Whole.vue'
import {onMounted, watch} from 'vue';
import {useRoute} from "vue-router";
let route = useRoute();
onMounted(() => {
});
</script>
<style lang="scss" scoped>
.space-create-box {
z-index: 101;
position: relative;
padding: 0 10px;
}
.space-view-box {
height: calc(100vh - 130px);
overflow-y: auto;
}
</style>