fix:修改alerrt tooltip 靠近底部时不向上显示的问题

This commit is contained in:
zhangyu
2020-10-15 18:20:32 +08:00
parent bd4def3713
commit 9279bdf13e
3 changed files with 199 additions and 97 deletions

View File

@@ -1,5 +1,5 @@
<template>
<div class="alert-rule-tip" :style="calcPosition(that.position)" v-loading="loading">
<div :class="calcHeight(that.position,that)" :style="calcPosition(that.position,that)" v-loading="loading">
<div class="alert-rule-info" >
<div class="alert-rule-box">
<div class="alert-rule-title">ID</div>
@@ -60,12 +60,36 @@
},
computed: {
calcPosition() {
let self=this;
return function(position) {
return {
left: `${position.left + position.width + 20}px`,
top: `${position.top - 10}px`,
let clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
let elHeight=50;
console.log(elHeight);
if(position.top+elHeight>clientHeight){
return {
left: `${position.left + position.width + 20}px`,
top: `${position.top -elHeight- 20}px`,
}
}else{
return {
left: `${position.left + position.width + 20}px`,
top: `${position.top - 20}px`,
}
}
}
},
calcHeight(){
let self=this;
return function(position) {
let clientHeight = (document.body.clientHeight<document.documentElement.clientHeight)?document.body.clientHeight:document.documentElement.clientHeight;
let elHeight=50;
if(position.top+elHeight>clientHeight){
return 'alert-rule-tip-Up'
}else{
return 'alert-rule-tip'
}
}
}
},
methods:{
@@ -117,6 +141,30 @@
left: 0;
transform: translate(-100%, -50%);
}
.alert-rule-tip-Up {
position: fixed;
background-color: white;
z-index: 3000;
padding: 10px;
border-radius: 4px;
box-shadow: -1px 1px 9px -1px rgba(205,205,205,0.77);
}
.alert-rule-tip-Up::after {
content: '';
display: block;
width:0;
height:0;
overflow: hidden;
font-size: 0;
line-height: 0;
border: 5px;
border-style: dashed solid dashed dashed;
border-color: transparent #fff transparent transparent;
position: absolute;
bottom: 20px;
left: 0;
transform: translate(-100%, -50%);
}
.alert-rule-info{
border: 1px solid #ebeef5;
border-bottom: none;