略改样式

This commit is contained in:
shi
2025-08-25 19:59:36 +08:00
parent e4523299d4
commit 290fc16c32
9 changed files with 39 additions and 20 deletions

View File

@ -1,12 +1,12 @@
<template>
<div class="large_screen">
<Header :projectId="projectId" @changePage="handleChangePage" />
<Header :projectId="projectId" :isFull="isFull" @changePage="handleChangePage" />
<div class="nav">
<div class="nav_left" :style="{ left: isHideOther ? '-25vw' : '0' }">
<leftPage :projectId="projectId" />
</div>
<div class="nav_center" :style="{ width: isFull ? '100%' : 'calc(50vw - 30px)' }">
<centerPage :projectId="projectId" :hideFooter="isHiding" :isHide="isFull" />
<centerPage :projectId="projectId" :isHide="isFull" />
</div>
<div class="nav_right" :style="{ right: isHideOther ? '-25vw' : '0' }">
<rightPage :projectId="projectId" />
@ -27,7 +27,6 @@ const userStore = useUserStoreHook();
const projectId = computed(() => userStore.selectedProject.id);
const isFull = ref(false)
const isHideOther = ref(false)
const isHiding = ref(false)
/**
* 切换中心页面全屏