调整历史记录窗口大小。调整整个页面最小高度。

This commit is contained in:
mxd
2021-08-07 11:01:02 +08:00
parent 8d35306a74
commit 47553c0822
3 changed files with 4 additions and 4 deletions

View File

@@ -9,7 +9,7 @@
width: 100%;
height: 100%;
min-width: 1200px;
min-height: 500px;
min-height: 600px;
--color: #000;
--empty-color: #505050;
--empty-key-color: #5263A0;

View File

@@ -1,7 +1,7 @@
<template>
<div class="ma-history">
<ul class="not-select">
<li v-for="(item, key) in timestampes" :key="'history_' + key" :class="{ selected: currentItem == item }"
<li v-for="(item, key) in timestampes" :key="'history_' + key" :class="{ selected: currentItem === item }"
@click.stop="open(item)">
{{ item.dateTime }}
</li>
@@ -96,7 +96,7 @@ export default {
overflow: auto;
position: relative;
width: 100%;
height: 685px;
height: 485px;
border-top: 1px solid var(--border-color);
}

View File

@@ -37,7 +37,7 @@
</div>
<magic-dialog :title="'历史记录:' + (info && info.name)" :value="showHsitoryDialog"
align="right" height="750px" maxWidth="inherit" padding="none" width="80%"
align="right" height="550px" maxWidth="inherit" padding="none" width="1100px" :moveable="false"
@onClose="showHsitoryDialog = false">
<template #content>
<magic-history ref="history"/>