添加 电能质量问题管理页面
This commit is contained in:
@@ -3,11 +3,11 @@
|
||||
<el-tabs v-model="activeName" type="border-card">
|
||||
<!-- <el-tab-pane label="概览" name="1"><overview v-if="activeName == '1'"/></el-tab-pane>
|
||||
<el-tab-pane label="技术监督管理" name="2"><technology v-if="activeName == '2'"/></el-tab-pane> -->
|
||||
|
||||
|
||||
<el-tab-pane label="预警单列表" name="3">
|
||||
<earlyWarning v-if="activeName == '3'"/>
|
||||
<earlyWarn v-if="activeName == '3'" />
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="告警单列表" name="4"><alarm v-if="activeName == '4'"/></el-tab-pane>
|
||||
<el-tab-pane label="告警单列表" name="4"><alarm v-if="activeName == '4'" /></el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
@@ -15,13 +15,13 @@
|
||||
<script setup lang="ts">
|
||||
import overview from './components/overview.vue'
|
||||
import technology from './components/technology.vue'
|
||||
import earlyWarning from './components/earlyWarning.vue'
|
||||
import earlyWarn from './components/earlyWarn.vue'
|
||||
import alarm from './components/alarm.vue'
|
||||
import { onMounted, reactive, ref, provide } from 'vue'
|
||||
|
||||
import { mainHeight } from '@/utils/layout'
|
||||
defineOptions({
|
||||
name: 'supervision/harmonicmanagement'
|
||||
name: 'supervision/supervision/manage'
|
||||
})
|
||||
const activeName = ref('3')
|
||||
const Statistics = ref()
|
||||
|
||||
Reference in New Issue
Block a user