From 2b8cbeec005f8ac6f65818da28fc239cf82fc716 Mon Sep 17 00:00:00 2001
From: 杨磊 <505174330@qq.com>
Date: 星期一, 28 四月 2025 10:50:31 +0800
Subject: [PATCH] 字体文件

---
 src/views/chronology/index.vue |  114 ++++++++++++++++++++++++++++++++++++++++++---------------
 1 files changed, 84 insertions(+), 30 deletions(-)

diff --git a/src/views/chronology/index.vue b/src/views/chronology/index.vue
index 61ca221..e202f0f 100644
--- a/src/views/chronology/index.vue
+++ b/src/views/chronology/index.vue
@@ -49,20 +49,21 @@
                   class="gradchild"
                   v-for="(citem, cindex) in item.list"
                   :style="{ background: citem.color }"
-                  @mouseover="showDetail(index, cindex, 1)"
-                  @mouseleave="closeDetail(index, cindex, 0)"
+                  @click.self="showDetail(index, cindex, 1, $event)"
                   :key="cindex"
                 >
-                  <div class="detailDialog" v-if="citem.showDetail">
-                    <!-- <div class="dialogContent" @click="gotoDetail(citem)"> -->
+                  <div
+                    class="detailDialog"
+                    :style="popupStyle"
+                    v-if="citem.showChildDetail"
+                  >
                     <div
                       class="closeBtn"
-                      @click="closeDetail(index, cindex, 0)"
+                      @click.stop="closeDetail(index, cindex, 0)"
                     >
                       <i class="el-icon-close"></i>
                     </div>
                     <floatingWindow :info="citem" />
-                    <!-- </div> -->
                   </div>
                 </div>
               </div>
@@ -94,6 +95,7 @@
 import moment from "moment";
 import floatingWindow from "./floatingWindow.vue";
 import yearWindow from "./yearWindow.vue";
+import { nextTick } from "vue";
 
 export default {
   components: {
@@ -113,6 +115,10 @@
         newspaper: "#8d77b3",
         other: "#009f9f",
       },
+      popupStyle: {
+        left: "0",
+        top: "0",
+      },
     };
   },
 
@@ -121,7 +127,7 @@
   },
 
   methods: {
-    showYearWindow(item) {
+    showYearWindow(item, event) {
       console.log(item, "item");
       for (let i = 0; i < this.contentList.length; i++) {
         const item = this.contentList[i];
@@ -158,12 +164,16 @@
             const listData = await this.getYearResource(item);
             if (listData.length > 0) {
               this.$set(item, "list", listData);
+              for (let j = 0; j < listData.length; j++) {
+                const element = listData[j];
+                this.$set(element, "showChildDetail", false);
+              }
               console.log(item, "item");
             }
           }
 
           console.log(this.contentList, "this.contentList");
-          this.contentList = res.datas.reverse();
+          this.contentList = res.datas;
           this.showList = true;
         });
     },
@@ -217,30 +227,61 @@
     closeDetail(index, cindex, type) {
       for (let i = 0; i < this.contentList.length; i++) {
         const item = this.contentList[i];
-        if (item && item.length > 0) {
+        if (item && item.list?.length > 0) {
           for (let j = 0; j < item.list.length; j++) {
             const citem = item.list[j];
-            this.$set(citem, "showDetail", false);
+            this.$set(citem, "showChildDetail", false);
           }
         }
       }
       this.contentList[index].list[cindex].showDetail = false;
+
+      console.log(
+        this.contentList[index].list,
+        "this.contentList[index].list[cindex]"
+      );
     },
-    showDetail(index, cindex, type) {
+    showDetail(index, cindex, type, event) {
+      const rect = event.target.getBoundingClientRect();
+      const screenWidth = window.innerWidth;
+      const popupWidth = 542; // 鍋囪寮规瀹藉害涓�200px
+      // 鍒ゆ柇瑙﹀彂鍏冪礌浣嶇疆
+      if (rect.left + rect.width / 2 < screenWidth / 2) {
+        // 宸︿晶鏄剧ず寮规鍦ㄥ彸渚�
+        this.popupStyle = {
+          left: `${rect.right}px`,
+          top: `${rect.bottom - 150}px`,
+        };
+      } else {
+        // 鍙充晶鏄剧ず寮规鍦ㄥ乏渚�
+        this.popupStyle = {
+          left: `${rect.left - popupWidth}px`,
+          top: `${rect.bottom - 150}px`,
+        };
+      }
+      console.log(this.popupStyle.top, "this.top");
+      console.log(this.popupStyle.left, "this.left");
+      // if (rect.left - popupWidth < 0) {
+      //   // 宸︿晶绌洪棿涓嶈冻鏃跺己鍒跺彸渚ф樉绀�
+      //   this.popupStyle.left = `${rect.right}px`;
+      // } else if (rect.right + popupWidth > screenWidth) {
+      //   // 鍙充晶绌洪棿涓嶈冻鏃跺己鍒跺乏渚ф樉绀�
+      //   this.popupStyle.left = `${rect.left - popupWidth}px`;
+      // }
       for (let i = 0; i < this.contentList.length; i++) {
         const item = this.contentList[i];
-        if (item && item.length > 0) {
+        if (item && item.list?.length > 0) {
           for (let j = 0; j < item.list.length; j++) {
             const citem = item.list[j];
-            this.$set(citem, "showDetail", false);
-            item.showDetail = false;
+            if (citem.showChildDetail) {
+              this.contentList[i].list[j].showDetail = false;
+              citem.showChildDetail = false;
+            }
           }
         }
       }
       if (this.contentList[index].list[cindex].type) {
-        this.contentList[index].list[cindex].showDetail = true;
-      } else {
-        this.contentList[index].list[cindex].showDetail = false;
+        this.contentList[index].list[cindex].showChildDetail = true;
       }
     },
   },
@@ -303,7 +344,7 @@
     // }
     /* 瀵逛簬WebKit娴忚鍣ㄥ拰Blink寮曟搸锛堝Chrome, Opera锛� */
     ::-webkit-scrollbar {
-      width: 16px; /* 婊氬姩鏉$殑瀹藉害 */
+      width: 4px; /* 婊氬姩鏉$殑瀹藉害 */
       height: 16px; /* 婊氬姩鏉$殑楂樺害 */
     }
 
@@ -313,7 +354,8 @@
 
     ::-webkit-scrollbar-thumb {
       background: #b9a587; /* 婊氬姩鏉℃粦鍧楃殑棰滆壊 */
-      border-radius: 16px; /* 婊氬姩鏉℃粦鍧楃殑鍦嗚 */
+      border-radius: 2px; /* 婊氬姩鏉℃粦鍧楃殑鍦嗚 */
+      width: 4px;
     }
 
     ::-webkit-scrollbar-thumb:hover {
@@ -365,6 +407,19 @@
   position: relative;
 }
 
+// .gradchild :hover {
+//   transform: scale(1.1);
+//   z-index: 999;
+// }
+
+/* 閲嶇疆瀛愬厓绱犵殑鏍峰紡 */
+// .gradchild:hover .detailDialog {
+//   transform: scale(1);
+//   z-index: 999;
+// }
+.item-circle :hover ::before {
+  background-color: #b9a587 !important;
+}
 .item-circle {
   width: 100%;
   height: 20px;
@@ -406,8 +461,7 @@
   align-items: center;
 }
 .detailDialog {
-  position: absolute;
-  top: -700%;
+  position: fixed;
   width: 524px;
   z-index: 9999;
   cursor: pointer;
@@ -427,15 +481,15 @@
   border: 2px solid #cbbeaa;
   box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.5);
 }
-.detailDialog .dialogContent {
-  width: 100%;
-  height: 100%;
-  background-color: #fff;
-  position: relative;
-  padding: 5px;
-  z-index: 20;
-  box-sizing: border-box;
-}
+// .detailDialog .dialogContent {
+//   width: 100%;
+//   height: 100%;
+//   background-color: #fff;
+//   position: relative;
+//   padding: 5px;
+//   z-index: 20;
+//   box-sizing: border-box;
+// }
 .closeBtn {
   position: absolute;
   width: 20px;

--
Gitblit v1.9.1