谐波监测点目录搭建

This commit is contained in:
仲么了
2024-02-28 14:36:55 +08:00
parent 4615b48ee4
commit 279db34690
15 changed files with 896 additions and 1846 deletions

View File

@@ -4,19 +4,26 @@
<el-tab-pane label='导航' name='1' :style='height' lazy>
<Navigation @changeTab='changeTab' />
</el-tab-pane>
<el-tab-pane label='稳态综合评估' name='2' lazy v-if='!isReload'>
<el-tab-pane label='稳态综合评估' name='2' lazy :style='height' v-if='!isReload'>
<Wentaizonghepinggu />
</el-tab-pane>
<el-tab-pane label='稳态指标合格率' name='3' lazy v-if='!isReload'>
<el-tab-pane label='稳态指标合格率' name='3' lazy :style='height' v-if='!isReload'>
<Wentaizhibiaohegelv />
</el-tab-pane>
<el-tab-pane label='稳态数据分析' name='4' lazy :style='height' v-if='!isReload'>
<Wentaishujufenxi />
</el-tab-pane>
<el-tab-pane label='谐波频普' name='5' lazy :style='height' v-if='!isReload'>
<Xiebopingpu />
</el-tab-pane>
<el-tab-pane label='告警数据统计' name='6' lazy :style='height' v-if='!isReload'>
<Gaojingshujutongji />
</el-tab-pane>
<el-tab-pane label='监测点运行状态' name='7' lazy :style='height' v-if='!isReload'>
<Yunxingzhuangtai />
</el-tab-pane>
<el-tab-pane label='实时数据' name='7' lazy :style='height' v-if='!isReload'>
<el-tab-pane label='实时数据' name='8' lazy :style='height' v-if='!isReload'>
<Shishishuju />
</el-tab-pane>
</el-tabs>
<div class='monitoring-point'>当前位置{{ monitoringPoint.state.lineName }}</div>
@@ -24,11 +31,17 @@
</template>
<script setup lang='ts'>
import { defineOptions, nextTick, ref, watch } from 'vue'
import Navigation from './navigation/index.vue'
import EventStatistics from './eventStatistics/index.vue'
import EventStudy from './eventStudy/index.vue'
import RunningCondition from './runningCondition/index.vue'
import { mainHeight } from '@/utils/layout'
import Navigation from './navigation/index.vue'
import Wentaizonghepinggu from './wentaizonghepinggu/index.vue'
import Wentaizhibiaohegelv from './wentaizhibiaohegelv/index.vue'
import Wentaishujufenxi from './wentaishujufenxi/index.vue'
import Xiebopingpu from './xiebopingpu/index.vue'
import Gaojingshujutongji from './gaojingshujutongji/index.vue'
import Yunxingzhuangtai from './yunxingzhuangtai/index.vue'
import Shishishuju from './shishishuju/index.vue'
import router from '@/router'
import { useMonitoringPoint } from '@/stores/monitoringPoint'