|
@@ -5,7 +5,7 @@
|
|
|
<div class="title_content">
|
|
|
<div class="title">
|
|
|
<img src="../../../assets/img/Group 4645(1).png" alt="" />
|
|
|
- <span> {{ name }}</span>
|
|
|
+ <span>{{ name }}</span>
|
|
|
</div>
|
|
|
<span>
|
|
|
{{ count }}
|
|
@@ -15,17 +15,42 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="risk_report_bottom">
|
|
|
- <div v-for="(item, index) in levelList" class="risk_report_level">
|
|
|
- <div class="risk_report_level_count">
|
|
|
- <img :src="getImgSrc(item.level)" alt="" />
|
|
|
- <div>{{ item.count }}</div>
|
|
|
- </div>
|
|
|
+ <div v-for="(item, index) in levelList" :key="index" class="risk_report_level">
|
|
|
+
|
|
|
+ <el-tooltip placement="top" effect="customized" trigger="hover" :key="index" popper-class="custom-tooltip">
|
|
|
+ <template #content>
|
|
|
+ <div class="tooltip-content">
|
|
|
+ <div>2024.11.20</div>
|
|
|
+ <div class="tooltip-content_top">
|
|
|
+ <img src="../../../assets/img/提示框1.png" alt="" />
|
|
|
+ <span>进博会保障</span>
|
|
|
+ </div>
|
|
|
+ <div class="tooltip-content_bottom">
|
|
|
+ <div class="tooltip-content_bottom_left">
|
|
|
+ <img src="../../../assets/img/提示框2.png" alt="" />
|
|
|
+ <span>处置中</span>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div class="tooltip-content_bottom_right">
|
|
|
+ <span>1</span>
|
|
|
+ 例
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <div class="risk_report_level_count">
|
|
|
+ <img :src="getImgSrc(item.level)" alt="" />
|
|
|
+ <div>{{ item.count }}</div>
|
|
|
+ </div>
|
|
|
+ </el-tooltip>
|
|
|
+
|
|
|
<div class="line" v-if="index !== levelList.length - 1"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<script setup>
|
|
|
+import { ElTooltip } from 'element-plus'
|
|
|
import { ref, toRaw, reactive, toRefs, onBeforeMount, onMounted, watch } from 'vue'
|
|
|
const props = defineProps({
|
|
|
levelObj: {}
|
|
@@ -34,13 +59,13 @@ const props = defineProps({
|
|
|
let name = ref('')
|
|
|
let count = ref(0)
|
|
|
let levelList = ref([])
|
|
|
+const visible = ref(false)
|
|
|
|
|
|
watch(
|
|
|
() => props.levelObj,
|
|
|
(newObj, oldObj) => {
|
|
|
-
|
|
|
let obj = toRaw(newObj)
|
|
|
-
|
|
|
+
|
|
|
name.value = obj.name
|
|
|
count.value = obj.count
|
|
|
levelList.value = obj.levelList
|
|
@@ -51,7 +76,7 @@ watch(
|
|
|
}
|
|
|
)
|
|
|
|
|
|
-function getImgSrc (picName) {
|
|
|
+function getImgSrc(picName) {
|
|
|
return new URL(`../../../assets/img/等级${picName}.png`, import.meta.url).href
|
|
|
}
|
|
|
</script>
|
|
@@ -67,6 +92,7 @@ function getImgSrc (picName) {
|
|
|
// justify-content: space-between;
|
|
|
justify-content: space-around;
|
|
|
box-sizing: border-box;
|
|
|
+
|
|
|
.risk_report_top {
|
|
|
height: 28px;
|
|
|
display: flex;
|
|
@@ -101,12 +127,12 @@ function getImgSrc (picName) {
|
|
|
font-style: normal;
|
|
|
text-transform: none;
|
|
|
|
|
|
- >img {
|
|
|
+ > img {
|
|
|
margin-right: 10px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- >span {
|
|
|
+ > span {
|
|
|
font-family: YouSheBiaoTiHei, YouSheBiaoTiHei;
|
|
|
font-weight: 400;
|
|
|
font-size: 28px;
|
|
@@ -153,26 +179,33 @@ function getImgSrc (picName) {
|
|
|
align-items: center;
|
|
|
justify-content: space-between;
|
|
|
// color: #88EAFF;
|
|
|
- text-transform: none;
|
|
|
+ // text-transform: none;
|
|
|
/* 金属光泽渐变效果 */
|
|
|
- background: linear-gradient(to top, #88EAFF 4%, #ffffff 40%);
|
|
|
- -webkit-background-clip: text;
|
|
|
+ // background: linear-gradient(to top, #88eaff 4%, #ffffff 40%);
|
|
|
+ // -webkit-background-clip: text;
|
|
|
/* 文字应用渐变 */
|
|
|
- background-clip: text;
|
|
|
- /* 使文字透明,背景渐变会应用到文字 */
|
|
|
- color: transparent;
|
|
|
+ // background-clip: text;
|
|
|
+ // /* 使文字透明,背景渐变会应用到文字 */
|
|
|
+ // color: transparent;
|
|
|
/* 光泽效果:文本阴影 */
|
|
|
// text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.4), -2px -2px 5px rgba(0, 0, 0, 0.4);
|
|
|
|
|
|
/* 给文字加一些柔和的过渡效果 */
|
|
|
- transition: all 0.3s ease;
|
|
|
+ // transition: all 0.3s ease;
|
|
|
+ color: #88eaff;
|
|
|
|
|
|
.risk_report_level_count {
|
|
|
text-align: center;
|
|
|
- >img {
|
|
|
- width: 41px;
|
|
|
- height: 24px;
|
|
|
- }
|
|
|
+ cursor: pointer; /* 可选:增加鼠标指针提示 */
|
|
|
+ // pointer-events: auto;
|
|
|
+ pointer-events: auto !important; // 强制允许接收事件
|
|
|
+ position: relative; // 确保元素在布局中可交互
|
|
|
+ z-index: 3; // 避免被父元素覆盖
|
|
|
+
|
|
|
+ > img {
|
|
|
+ width: 41px;
|
|
|
+ height: 24px;
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.line {
|
|
@@ -183,9 +216,98 @@ function getImgSrc (picName) {
|
|
|
height: 24px;
|
|
|
width: 2px;
|
|
|
background: linear-gradient(0deg, rgba(34, 73, 127, 0) 0%, rgba(136, 234, 255, 0.6) 50%, rgba(34, 73, 127, 0) 100%);
|
|
|
- margin:0 15px;
|
|
|
+ margin: 0 15px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+/* 自定义 Tooltip 样式 */
|
|
|
+.tooltip-content {
|
|
|
+ padding: 6px 12px;
|
|
|
+ box-sizing: border-box;
|
|
|
+ min-width: 103px;
|
|
|
+ min-height: 76px;
|
|
|
+ background: rgba(16, 104, 179, 0.3) !important;
|
|
|
+ border: 1px solid #1d85a9 !important;
|
|
|
+ box-shadow: inset 0px 0px 8px 0px rgba(64, 211, 255, 0.5) !important;
|
|
|
+ border-radius: 4px 4px 4px 4px;
|
|
|
+ font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #a6b9cc;
|
|
|
+ font-style: normal;
|
|
|
+ text-transform: none;
|
|
|
+
|
|
|
+ .tooltip-content_top {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ > img {
|
|
|
+ margin-right: 3px;
|
|
|
+ width: 17px;
|
|
|
+ height: 17px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .tooltip-content_bottom {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ > div {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+
|
|
|
+ > img {
|
|
|
+ margin-right: 3px;
|
|
|
+ width: 17px;
|
|
|
+ height: 17px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ .tooltip-content_bottom_left {
|
|
|
+ margin-right: 16px;
|
|
|
+ }
|
|
|
+
|
|
|
+ .tooltip-content_bottom_right {
|
|
|
+ font-family: Alibaba PuHuiTi 3, Alibaba PuHuiTi 30;
|
|
|
+ font-weight: normal;
|
|
|
+ font-size: 12px;
|
|
|
+ color: #ffffff;
|
|
|
+ font-style: normal;
|
|
|
+ text-transform: none;
|
|
|
+
|
|
|
+ > span {
|
|
|
+ font-family: Roboto, Roboto;
|
|
|
+ font-weight: 600;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #70eeff;
|
|
|
+ text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
|
+ font-style: normal;
|
|
|
+ text-transform: none;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
</style>
|
|
|
+
|
|
|
+<style>
|
|
|
+/* .el-popper.is-customized {
|
|
|
+ padding: 6px 12px;
|
|
|
+ background: rgba(16, 104, 179, 0.3) !important;
|
|
|
+ border: 1px solid #1d85a9 !important;
|
|
|
+ color: #fff;
|
|
|
+ box-shadow: inset 0px 0px 8px 0px rgba(64, 211, 255, 0.5) !important;
|
|
|
+ border-radius: 4px 4px 4px 4px;
|
|
|
+} */
|
|
|
+
|
|
|
+.el-popper.is-customized .el-popper__arrow::before {
|
|
|
+ /* background: linear-gradient(45deg, rgba(16, 104, 179, 0.3), rgba(16, 104, 179, 0.3)); */
|
|
|
+ background: transparent;
|
|
|
+ right: 0;
|
|
|
+}
|
|
|
+
|
|
|
+.custom-tooltip {
|
|
|
+ z-index: 9999 !important;
|
|
|
+}
|
|
|
+</style>
|