2026-03-31 10:14:20 +08:00
|
|
|
<template>
|
2026-04-08 10:44:01 +08:00
|
|
|
<div>
|
|
|
|
|
<!-- <div v-if="dataLoading">
|
|
|
|
|
<EmptyPanel :loading="dataLoading" :data="data" />
|
|
|
|
|
</div> -->
|
|
|
|
|
<div style="width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center">
|
|
|
|
|
<span style="font-size: 14px; line-height: 22px; font-weight: 400; color: #000; margin-bottom: 4px">
|
|
|
|
|
监测数据接入情况
|
|
|
|
|
</span>
|
|
|
|
|
|
|
|
|
|
<div style="display: flex; flex-direction: column">
|
|
|
|
|
<div
|
|
|
|
|
style="width: 190px; height: 36px; border: 1px solid #EDF2F8; padding: 4px; display: flex; justify-content: space-between; cursor: pointer"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<span style="border-right: 2px solid #00A14D; margin-right: 6px"></span>
|
|
|
|
|
<span>大中型已建在建电站</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span style="padding-right: 3px; color: #2F6B98; cursor: pointer">{{ data.one ?? '-' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
style="width: 190px; height: 36px; border: 1px solid #EDF2F8; padding: 4px; display: flex; justify-content: space-between; margin: 3px 0; cursor: pointer"
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<span style="border-right: 2px solid #4978AD; margin-right: 6px"></span>
|
|
|
|
|
<span>已接入电站运行数据</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span style="padding-right: 3px; color: #2F6B98; cursor: pointer">{{ data.two ?? '-' }}</span>
|
|
|
|
|
</div>
|
|
|
|
|
<div
|
|
|
|
|
style="width: 190px; height: 36px; border: 1px solid #EDF2F8; padding: 4px; display: flex; justify-content: space-between; cursor: pointer"
|
|
|
|
|
>
|
|
|
|
|
<div>
|
|
|
|
|
<span style="border-right: 2px solid #606060; margin-right: 6px"></span>
|
|
|
|
|
<span>已开展全过程监测工作</span>
|
|
|
|
|
</div>
|
|
|
|
|
<span style="padding-right: 3px; color: #2F6B98; cursor: pointer">{{ data.three ?? '-' }}</span>
|
2026-03-31 10:14:20 +08:00
|
|
|
</div>
|
2026-04-08 10:44:01 +08:00
|
|
|
</div>
|
2026-03-31 10:14:20 +08:00
|
|
|
</div>
|
|
|
|
|
|
2026-04-08 10:44:01 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
2026-03-31 10:14:20 +08:00
|
|
|
|
2026-04-08 10:44:01 +08:00
|
|
|
<script setup lang="ts">
|
2026-04-22 17:53:20 +08:00
|
|
|
import { ref } from 'vue';
|
2026-03-31 10:14:20 +08:00
|
|
|
|
|
|
|
|
|
2026-04-08 10:44:01 +08:00
|
|
|
// 状态定义
|
|
|
|
|
const data = ref<Record<string, number>>({ one: 0, two: 0, three: 0 });
|
2026-03-31 10:14:20 +08:00
|
|
|
|
|
|
|
|
|
2026-04-08 10:44:01 +08:00
|
|
|
</script>
|