2025-03-24 18:26:50 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="default-main">
|
2025-03-25 17:46:19 +08:00
|
|
|
<el-tabs type="border-card">
|
2025-03-28 16:05:03 +08:00
|
|
|
<el-tab-pane label="异常数据清洗"><abnormal /></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="稳态告警统计"><alarm /></el-tab-pane>
|
2025-03-25 17:46:19 +08:00
|
|
|
</el-tabs>
|
2025-03-24 18:26:50 +08:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
|
|
|
|
defineOptions({
|
2025-03-25 10:20:24 +08:00
|
|
|
name: 'runManage/cleaning'
|
2025-03-24 18:26:50 +08:00
|
|
|
})
|
2025-03-25 17:46:19 +08:00
|
|
|
import abnormal from './components/abnormal.vue'
|
|
|
|
|
import alarm from './components/alarm.vue'
|
|
|
|
|
import { ref, reactive } from 'vue'
|
2025-03-24 18:26:50 +08:00
|
|
|
</script>
|
2025-03-25 17:46:19 +08:00
|
|
|
<style lang="scss" scoped></style>
|