2025-08-26 15:43:53 +08:00
|
|
|
|
<template>
|
|
|
|
|
<SmallBorder class="SmallBorder">
|
|
|
|
|
<div class="go-top-alarms">
|
|
|
|
|
<CustomSelect
|
|
|
|
|
:options="option.dateTime.dataset"
|
|
|
|
|
:selectedValue="option.dateTime.selectValue"
|
|
|
|
|
@change="handleSelectChange"
|
|
|
|
|
class="top-select"
|
|
|
|
|
/>
|
|
|
|
|
<div class="header">
|
|
|
|
|
<div class="title">
|
|
|
|
|
<div class="title-text">
|
|
|
|
|
<span :style="{
|
|
|
|
|
color: option.titleColor,
|
|
|
|
|
fontSize: option.titleSize + 'px',
|
|
|
|
|
marginTop: option.paddingY + 'px',
|
|
|
|
|
marginLeft: option.paddingX + 'px',
|
|
|
|
|
letterSpacing: option.letterSpacing + 'px'
|
|
|
|
|
}">{{ option.title }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<n-dropdown v-if='option.isShowButton' trigger="hover" :options="dropdownOptions" @select="handleSelect">
|
|
|
|
|
<div class="dropdown-button">
|
|
|
|
|
{{ selectedOption }}
|
|
|
|
|
<svg-icon icon-class="arrow-down" class="arrow-down-icon" />
|
|
|
|
|
</div>
|
|
|
|
|
</n-dropdown>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<ul>
|
2025-08-28 10:11:48 +08:00
|
|
|
|
<li v-for="(item, index) in displayData" :key="index" class="alarm-item">
|
2025-08-26 15:43:53 +08:00
|
|
|
|
<div class="item-info">
|
|
|
|
|
<span class="rank" :style="{ color: option.rankColor }">
|
|
|
|
|
<span class="rank-icon"></span>
|
2025-08-28 10:11:48 +08:00
|
|
|
|
{{ index + 1 }}
|
2025-08-26 15:43:53 +08:00
|
|
|
|
</span>
|
2025-08-28 10:11:48 +08:00
|
|
|
|
<span class="name" :style="{ color: option.nameColor }">{{ item.enterpriseName }}</span>
|
2025-08-26 15:43:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="item-value">
|
2025-08-28 10:11:48 +08:00
|
|
|
|
<span class="value" :style="{ color: option.valueColor }">{{ item.alarmCount }}</span>
|
2025-08-26 15:43:53 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="progress-bar-wrapper">
|
|
|
|
|
<div class="progress-bar">
|
|
|
|
|
<div class="progress" :style="{
|
2025-08-28 10:11:48 +08:00
|
|
|
|
width: calculateWidth(item.alarmCount),
|
2025-08-26 15:43:53 +08:00
|
|
|
|
background: `linear-gradient(to right, ${option.barColorStart}, ${option.barColorEnd})`
|
|
|
|
|
}"></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</SmallBorder>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts">
|
2025-08-28 10:11:48 +08:00
|
|
|
|
import { ref, computed, PropType, onMounted } from 'vue'
|
2025-08-26 15:43:53 +08:00
|
|
|
|
import { option as configOption } from './config'
|
|
|
|
|
import SmallBorder from '../SmallBorder/index.vue'
|
|
|
|
|
import CustomSelect from './select.vue'
|
2025-08-28 10:11:48 +08:00
|
|
|
|
import axios from 'axios'
|
2025-08-26 15:43:53 +08:00
|
|
|
|
|
|
|
|
|
const props = defineProps({
|
|
|
|
|
chartConfig: {
|
|
|
|
|
type: Object as PropType<{ option: typeof configOption }>,
|
|
|
|
|
required: true
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const option = computed(() => props.chartConfig.option)
|
|
|
|
|
const selectedOption = ref(props.chartConfig.option.dropdownDefault)
|
|
|
|
|
|
2025-08-28 10:11:48 +08:00
|
|
|
|
// 新增:存储API返回的数据
|
|
|
|
|
const displayData = ref([])
|
|
|
|
|
|
2025-08-26 15:43:53 +08:00
|
|
|
|
const dropdownOptions = computed(() => {
|
|
|
|
|
return props.chartConfig.option.dropdownOptions.map(opt => ({
|
|
|
|
|
label: opt,
|
|
|
|
|
key: opt
|
|
|
|
|
}))
|
|
|
|
|
})
|
|
|
|
|
|
2025-08-28 10:11:48 +08:00
|
|
|
|
// 修改:基于API数据计算进度条宽度
|
2025-08-26 15:43:53 +08:00
|
|
|
|
const calculateWidth = (value: number) => {
|
2025-08-28 10:11:48 +08:00
|
|
|
|
if (displayData.value.length === 0 || displayData.value[0].alarmCount === 0) {
|
|
|
|
|
return '0%'
|
|
|
|
|
}
|
|
|
|
|
const firstRowValue = displayData.value[0].alarmCount
|
|
|
|
|
return `${(value / firstRowValue) * 100}%` // 当前行的alarmCount/第一行的alarmCount值
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 新增:API调用函数
|
|
|
|
|
const fetchCorpsData = async (option: string) => {
|
|
|
|
|
try {
|
|
|
|
|
const response = await axios.get(`/screen/corpsFive/${option}`)
|
|
|
|
|
if (response.data.state === true) {
|
|
|
|
|
displayData.value = response.data.value || []
|
|
|
|
|
} else {
|
|
|
|
|
console.error('API调用失败:', response.data)
|
|
|
|
|
displayData.value = []
|
|
|
|
|
}
|
|
|
|
|
} catch (error) {
|
|
|
|
|
console.error('获取企业数据失败:', error)
|
|
|
|
|
displayData.value = []
|
|
|
|
|
}
|
2025-08-26 15:43:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const handleSelect = (key: string) => {
|
|
|
|
|
selectedOption.value = key
|
|
|
|
|
}
|
|
|
|
|
|
2025-08-28 10:11:48 +08:00
|
|
|
|
// 修改:处理下拉选择器变化,调用API
|
|
|
|
|
const handleSelectChange = async (value: any) => {
|
|
|
|
|
props.chartConfig.option.dateTime.selectValue = value
|
|
|
|
|
await fetchCorpsData(value)
|
2025-08-26 15:43:53 +08:00
|
|
|
|
}
|
2025-08-28 10:11:48 +08:00
|
|
|
|
|
|
|
|
|
// 新增:组件挂载时初始化数据
|
|
|
|
|
onMounted(async () => {
|
|
|
|
|
const initialValue = props.chartConfig.option.dateTime.selectValue || 'day'
|
|
|
|
|
await fetchCorpsData(initialValue)
|
|
|
|
|
})
|
2025-08-26 15:43:53 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.SmallBorder {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.go-top-alarms {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin-top: -10px;
|
|
|
|
|
// background-color: #0a162b;
|
|
|
|
|
padding: 15px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
.top-select {
|
|
|
|
|
top:20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
|
|
|
|
.title {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.title-text {
|
|
|
|
|
height: 35px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 20px 0 20px;
|
|
|
|
|
margin-left: 0px;
|
|
|
|
|
clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dropdown-button {
|
|
|
|
|
height: 30px;
|
|
|
|
|
padding: 0 15px;
|
|
|
|
|
background-color: #034a4b;
|
|
|
|
|
border: 1px solid #00e5ff;
|
|
|
|
|
border-radius: 15px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
|
|
.arrow-down-icon {
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.content {
|
|
|
|
|
flex: 1;
|
|
|
|
|
margin-top: -15px;
|
|
|
|
|
padding-right: 10px;
|
|
|
|
|
font-size: 12.5px;
|
|
|
|
|
|
|
|
|
|
ul {
|
|
|
|
|
list-style: none;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin: 0;
|
|
|
|
|
height: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
justify-content: space-around;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.alarm-item {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr auto;
|
|
|
|
|
grid-template-rows: auto auto;
|
|
|
|
|
grid-template-areas:
|
|
|
|
|
'info value'
|
|
|
|
|
'bar bar';
|
|
|
|
|
align-items: center;
|
|
|
|
|
padding: 0 10px;
|
|
|
|
|
gap: 6px 15px;
|
|
|
|
|
|
|
|
|
|
.item-info {
|
|
|
|
|
grid-area: info;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
|
|
|
|
|
.rank {
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
.rank-icon {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 4px;
|
|
|
|
|
height: 4px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
background-color: #00e5ff;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
margin-left: 6px;
|
|
|
|
|
box-shadow: 0 0 6px #00e5ff;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.name {
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.item-value {
|
|
|
|
|
grid-area: value;
|
|
|
|
|
text-align: right;
|
|
|
|
|
// font-size: 16px;
|
|
|
|
|
font-weight: normal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar-wrapper {
|
|
|
|
|
grid-area: bar;
|
|
|
|
|
width: calc(100% - 60px);
|
|
|
|
|
position: relative;
|
|
|
|
|
left: 20px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.progress-bar {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 5px;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: 1px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|