From 7f6fa75678e36a992f3037ce530d0226f0dd2128 Mon Sep 17 00:00:00 2001 From: 杨磊 <505174330@qq.com> Date: 星期二, 08 四月 2025 17:56:30 +0800 Subject: [PATCH] 比例修改 --- src/views/chronology/index.vue | 16 +++++++++++++++- 1 files changed, 15 insertions(+), 1 deletions(-) diff --git a/src/views/chronology/index.vue b/src/views/chronology/index.vue index 1161cbc..c624c7e 100644 --- a/src/views/chronology/index.vue +++ b/src/views/chronology/index.vue @@ -44,6 +44,7 @@ v-for="(citem, cindex) in item.list" :style="{ background: citem.color }" @mouseover="showDetail(index, cindex, 1)" + @mouseout="closeDetail(index, cindex, 0)" :key="cindex" > <div class="detailDialog" v-if="citem.showDetail"> @@ -817,6 +818,18 @@ methods: { gotoDetail(item) {}, + + closeDetail(index, cindex, type) { + // console.log(cindex, "cindex"); + // for (let i = 0; i < this.contentList.length; i++) { + // const item = this.contentList[i]; + // for (let j = 0; j < item.list.length; j++) { + // const citem = item.list[j]; + // this.$set(citem, "showDetail", false); + // } + // } + + }, showDetail(index, cindex, type) { for (let i = 0; i < this.contentList.length; i++) { const item = this.contentList[i]; @@ -825,7 +838,8 @@ this.$set(citem, "showDetail", false); } } - if (type == 1) { + + if (this.contentList[index].list[cindex].type) { this.contentList[index].list[cindex].showDetail = true; } else { this.contentList[index].list[cindex].showDetail = false; -- Gitblit v1.9.1