This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/src/components/common/Error.vue

113 lines
3.0 KiB
Vue
Raw Normal View History

2022-11-18 15:18:05 +08:00
<template>
<div>
<div v-if="showSmall">
<el-popover
:width="localPopoverWidth"
placement="top-start"
trigger="hover"
:visible-arrow="false"
class="error-popover"
popper-class="error-hover"
style="background: #1b2e3b !important;"
:content="content">
<template #reference>
<span>
<svg class="icon error-icon" aria-hidden="true">
<use xlink:href="#cn-icon-baocuo"></use>
</svg>
<!-- <i v-if="icon" :class="`one-icon-${icon}`"></i>-->
</span>
</template>
</el-popover>
<!-- 不使用popover实现hover后续考虑替换为该方案-->
<!-- <span class="new-error-icon" @mouseenter="hoverError">-->
<!-- <svg class="icon item-popover-up" aria-hidden="true">-->
<!-- <use xlink:href="#cn-icon-baocuo"></use>-->
<!-- </svg>-->
<!-- <div id="error-content" class="error-content">-->
<!-- rview/appCompanyCyclrview/appCompanyCycleTrafficTotal?startTime=getSecond(this.timeFilter.startTime)&endTime=getSecond(this.timeFilter.endTime)&appCompanies=%27Tencent%27,%27Jingdong%27,%27Akamai%27,%27Bytedance%27,%27Baidu%27,%27Huawei%27,%27Beike%27,%27Aiqiyi%27,%27Ctrip%27,%27Meituan%27-->
<!-- </div>-->
<!-- </span>-->
</div>
<div v-else class="error-block">
<div class="error-block-tooltip" :style="{'max-width': localMaxWidth, 'width': localWidth}">
<svg class="icon item-popover-up error-icon1" aria-hidden="true">
<use xlink:href="#cn-icon-baocuo"></use>
</svg>
{{ content }}
</div>
</div>
</div>
</template>
<script>
export default {
name: 'Error',
props: {
small: {
type: String
},
content: {
type: String,
default: 'Error'
},
width: {
type: String
},
maxWidth: {
type: String,
default: '350'
},
icon: {
type: String
},
svg: {
type: String
}
},
data () {
return {
showSmall: false, // 显示错误的类型true为图表模块内显示报错false为标题后显示报错
localWidth: '',
localMaxWidth: '',
localPopoverWidth: '350'
}
},
mounted () {
this.initData()
},
methods: {
initData () {
if (this.small !== undefined) {
this.showSmall = true
this.localPopoverWidth = this.width !== undefined
} else {
this.showSmall = false
}
if (this.width) {
this.localWidth = Math.abs(parseFloat(this.width)) + 'px'
}
if (this.maxWidth) {
this.localMaxWidth = Math.abs(parseFloat(this.maxWidth)) + 'px'
}
},
/**
* 鼠标移入事件用于获取弹窗dom修改距离父元素的top
*/
hoverError (e) {
// const dom = document.getElementById('error-content')
// if (dom) {
// console.log('---', dom.clientHeight)
// }
}
}
}
</script>
<style scoped>
</style>