diff --git a/nezha-fronted/src/assets/css/components/common/globalSearch/globalSearch.scss b/nezha-fronted/src/assets/css/components/common/globalSearch/globalSearch.scss index acf2cc085..ebb5908f0 100644 --- a/nezha-fronted/src/assets/css/components/common/globalSearch/globalSearch.scss +++ b/nezha-fronted/src/assets/css/components/common/globalSearch/globalSearch.scss @@ -14,14 +14,14 @@ } .global-search-box.search-after{ height: 82%; - min-height: 894px; + min-height: 600px; } .global-search-box { //background: $--background-color-empty; background: rgba(0,0,0,0); width: 80%; max-width: 1040px; - min-width: 894px; + min-width: 600px; height: auto; display: flex; flex-direction: column; @@ -48,6 +48,7 @@ height: 40px; line-height: 72px; color: $--color-text-regular; + padding-left: 0; vertical-align: middle; } .global-search-cancel{ @@ -118,7 +119,7 @@ } .is-jump{ position: absolute; - right: 20px; + right: 5px; top: 20px; padding: 0; width: 24px; @@ -132,6 +133,10 @@ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; + padding-right: 30px; + .nz-icon { + margin-right: 15px; + } .list-item-highlight{ background: none; color: $--color-primary; @@ -142,7 +147,7 @@ color: $--color-info; font-weight: 400; margin-top: 2px; - padding-left: 40px; + padding-left: 55px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; @@ -207,3 +212,6 @@ } } } +.fz12{ + font-size: 12px; +} diff --git a/nezha-fronted/src/assets/css/components/common/globalSearch/searchItemInfo.scss b/nezha-fronted/src/assets/css/components/common/globalSearch/searchItemInfo.scss index 8c771b6b4..94db84e33 100644 --- a/nezha-fronted/src/assets/css/components/common/globalSearch/searchItemInfo.scss +++ b/nezha-fronted/src/assets/css/components/common/globalSearch/searchItemInfo.scss @@ -8,6 +8,10 @@ align-items: center; box-sizing: border-box; padding: 60px 75px 0 75px; + .el-skeleton{ + height: 100%; + overflow-y: auto; + } .search-item-title-icon{ .nz-icon{ font-size: 32px; diff --git a/nezha-fronted/src/components/chart/chartDetail.vue b/nezha-fronted/src/components/chart/chartDetail.vue index bfe089dea..1c4cec530 100644 --- a/nezha-fronted/src/components/chart/chartDetail.vue +++ b/nezha-fronted/src/components/chart/chartDetail.vue @@ -162,7 +162,6 @@ export default { immediate: true, deep: true, handler (n) { - console.log(n.fields) n.fields.map(e => { if (e.name === 'time') { e.value[0] = bus.timeFormate(e.value[0], this.timeFormatMain) diff --git a/nezha-fronted/src/components/common/globalSearch/globalSearch.vue b/nezha-fronted/src/components/common/globalSearch/globalSearch.vue index a352a92fc..c97078e52 100644 --- a/nezha-fronted/src/components/common/globalSearch/globalSearch.vue +++ b/nezha-fronted/src/components/common/globalSearch/globalSearch.vue @@ -3,7 +3,7 @@