style: 看病样式调整

This commit is contained in:
TsMask
2024-01-27 15:07:54 +08:00
parent 24b367c08e
commit 82d87743a1
2 changed files with 10 additions and 8 deletions

View File

@@ -57,6 +57,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
cursor: pointer;
} }
.brand .brand-title { .brand .brand-title {
color: #ffffff; color: #ffffff;
@@ -73,8 +74,8 @@
/* 实时流量 */ /* 实时流量 */
.upfFlow { .upfFlow {
height: 16rem; min-height: 16rem;
display: flex; height: 40%;
} }
.upfFlow .inner .chart { .upfFlow .inner .chart {
width: 100%; width: 100%;
@@ -84,8 +85,8 @@
/* 网络拓扑 */ /* 网络拓扑 */
.topology { .topology {
height: 27.8rem; min-height: 27.8rem;
display: flex; height: 56%;
} }
.topology .inner .chart { .topology .inner .chart {
width: 100%; width: 100%;
@@ -95,7 +96,8 @@
/* 概览区域 */ /* 概览区域 */
.overview { .overview {
height: 6.167rem; min-height: 6.167rem;
height: 12%;
} }
.overview .inner { .overview .inner {
display: flex; display: flex;
@@ -127,7 +129,7 @@
/* cdr会话监控 */ /* cdr会话监控 */
.cdrEvent { .cdrEvent {
min-height: 22rem; min-height: 22rem;
height: 60%; height: 58%;
} }
.cdrEvent .inner .chart { .cdrEvent .inner .chart {
width: 100%; width: 100%;
@@ -193,7 +195,7 @@
/* ue会话监控 */ /* ue会话监控 */
.ueEvent { .ueEvent {
min-height: 22rem; min-height: 22rem;
height: 60%; height: 58%;
} }
.ueEvent .inner .chart { .ueEvent .inner .chart {
width: 100%; width: 100%;

View File

@@ -94,7 +94,7 @@ onMounted(() => {
<template> <template>
<div class="viewport" ref="viewportDom"> <div class="viewport" ref="viewportDom">
<div class="brand"> <div class="brand">
<div class="brand-title" @click="toggle"> <div class="brand-title" @click="toggle" title="点击全屏显示">
核心网系统看板 核心网系统看板
<FullscreenExitOutlined v-if="isFullscreen" /> <FullscreenExitOutlined v-if="isFullscreen" />
<FullscreenOutlined v-else /> <FullscreenOutlined v-else />