Compare commits

..

No commits in common. "bbf1da34931b39f3311599b216ee3414719494d6" and "e0a63a53304ced354a8ad2450979a35acd83746c" have entirely different histories.

6 changed files with 5 additions and 39 deletions

View File

@ -78,11 +78,6 @@ const locationInfo = [
min-width: 248px;
max-width: 100%;
// min-height: 160px;
&:hover {
// border: 2px solid rgba(255, 80, 80, 0.6);
box-shadow: 0 0 10px rgba(255, 80, 80, 0.6), 0 0 20px rgba(255, 0, 0, 0.4),
0 0 35px rgba(255, 0, 0, 0.25);
}
}
// 2x2

View File

@ -173,7 +173,7 @@ const handleQuickResponseToggle = () => {
box-sizing: border-box;
&::-webkit-scrollbar {
width: vw(0);
width: vw(6);
}
&::-webkit-scrollbar-track {

View File

@ -1,6 +1,5 @@
<template>
<div class="right-panel">
<div class="right-panel__content">
<CollapsiblePanel title="快速处置" subtitle="「调度指挥」">
<DispatchCommand />
</CollapsiblePanel>
@ -20,7 +19,6 @@
</CollapsiblePanel> -->
<CollaborationInfo />
</div>
</div>
</template>
<script setup>
@ -44,18 +42,10 @@ import CollaborationInfo from './CollaborationInfo.vue'
overscroll-behavior: contain;
padding-right: vw(40); //
padding-top: var(--sa-header-height);
padding-left: 10px;
box-sizing: border-box;
&__content {
&:hover {
// border: 2px solid rgba(255, 80, 80, 0.6);
box-shadow: 0 0 10px rgba(255, 80, 80, 0.6), 0 0 20px rgba(255, 0, 0, 0.4),
0 0 35px rgba(255, 0, 0, 0.25);
}
}
&::-webkit-scrollbar {
width: vw(0);
width: vw(6);
}
&::-webkit-scrollbar-track {

View File

@ -160,9 +160,7 @@ function onAfterLeave(el) {
.collapsible-panel {
display: flex;
flex-direction: column;
&:not(:last-child) {
margin-bottom: vh(17);
}
border: 2px solid transparent; /* 防止 hover 时抖动 */
&__header {

View File

@ -15,9 +15,6 @@
<div class="stretchable-modal__header">
<slot name="header">
<h3 class="stretchable-modal__title">{{ title }}</h3>
<div class="stretchable-modal__extra">
<slot name="extraButtons"></slot>
</div>
</slot>
<button
v-if="showClose"
@ -39,7 +36,7 @@
</div>
<!-- 底部大弹窗bottom切图.png -->
<div class="stretchable-modal__footer">
<div v-if="$slots.footer" class="stretchable-modal__footer">
<slot name="footer"></slot>
</div>
</div>
@ -215,20 +212,6 @@ onUnmounted(() => {
margin: 0;
}
&__extra {
position: absolute;
right: 125px;
top: 18px;
display: flex;
align-items: center;
justify-content: center;
&:hover {
// border: 2px solid rgba(255, 80, 80, 0.6);
box-shadow: 0 0 10px rgba(255, 80, 80, 0.6), 0 0 20px rgba(255, 0, 0, 0.4),
0 0 35px rgba(255, 0, 0, 0.25);
}
}
&__close {
position: absolute;
top: 34px;

View File

@ -204,7 +204,7 @@
/>
<!-- 底部一键启动按钮 -->
<template #extraButtons>
<template #footer>
<ActionButton
text="响应调度"
type="inModal"