From 9cecf475d56628c6a15f4e4f596c81d076f16cb5 Mon Sep 17 00:00:00 2001 From: nbgnb <12862071+nbgnb@user.noreply.gitee.com> Date: Tue, 25 Jul 2023 16:33:24 +0800 Subject: [PATCH] 111 --- .../src/views/DataPreview/VideoMonitoring.vue | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/FlowerGully/src/views/DataPreview/VideoMonitoring.vue b/FlowerGully/src/views/DataPreview/VideoMonitoring.vue index a9207e5..83078a0 100644 --- a/FlowerGully/src/views/DataPreview/VideoMonitoring.vue +++ b/FlowerGully/src/views/DataPreview/VideoMonitoring.vue @@ -22,7 +22,7 @@ - + {{ city }} @@ -47,7 +47,7 @@ @@ -175,6 +175,13 @@ export default { addZero(s) { return s < 10 ? "0" + s : s; }, + close1(item) { + this.checkedCities.forEach(item1 => { + if (item1 == item) { + this.checkedCities.splice(item1, 1) + } + }) + } }, @@ -282,7 +289,7 @@ export default { /**修改边框和字体颜色 */ ::v-deep .el-select { position: relative; - width: 258px; + width: 280px; .el-input { input { @@ -311,7 +318,7 @@ export default { display: flex; justify-content: space-between; flex-flow: row wrap; - // overflow-x: scroll; + overflow-x: scroll; } .guan { @@ -319,7 +326,6 @@ export default { margin-right: 8px; display: flex; flex-direction: column; - margin-bottom: -50px; } .spanA { -- Gitee