🎨 修改页面大小.

This commit is contained in:
lijiahangmax
2025-01-15 23:44:54 +08:00
parent 932bdb86ad
commit 25359f0f66
6 changed files with 13 additions and 12 deletions

View File

@@ -8,7 +8,7 @@
:z-index="9999"
style="width: 100%; height: 100%;"
:content="userStore.username || ''">
<PageLayout />
<page-layout />
</a-watermark>
</a-layout-content>
</a-layout>

View File

@@ -1,5 +1,5 @@
<template>
<div class="view-container">
<div class="layout-container view-container">
<a-tabs v-model:active-key="activeKey"
class="tabs-container simple-card"
size="large"
@@ -52,11 +52,8 @@
<style lang="less" scoped>
.view-container {
display: flex;
width: 100%;
height: 100%;
position: relative;
padding: 16px;
height: calc(100vh - 92px);
}
.tabs-container {

View File

@@ -45,9 +45,7 @@
.upload-container {
width: 100%;
height: 100%;
position: relative;
display: flex;
height: calc(100vh - 92px);
}
</style>

View File

@@ -1,5 +1,5 @@
<template>
<div class="layout-container full">
<div class="layout-container exec-container">
<!-- 执行面板 -->
<div v-show="!logVisible" class="panel-wrapper">
<exec-command-panel @submit="openLog" />
@@ -73,6 +73,11 @@
<style lang="less" scoped>
.exec-container {
width: 100%;
height: calc(100vh - 92px);
}
.panel-wrapper {
width: 100%;
height: 100%;