mes-lqqt-ui/src/views/abnormalityAlarm/robotic/index.vue
2023-12-27 15:58:07 +08:00

42 lines
820 B
Vue

<template>
<div class="app-container">
<!-- 切换 -->
<el-tabs v-model="activeName" @tab-click="handleClick">
<el-tab-pane label="异常报警" name="1">
<roboticAlarm />
</el-tab-pane>
<el-tab-pane label="历史异常报警" name="2">
<historicalAlarm />
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
import roboticAlarm from "./roboticAlarm.vue";
import historicalAlarm from "./historicalAlarm.vue";
export default {
components: { roboticAlarm, historicalAlarm },
data() {
return {
//默认tab切换为1
activeName: "1",
};
},
methods: {
//点击tab切换
handleClick() {
this.activeName = "2";
},
},
};
</script>
<style scoped lang="scss">
.clearfix {
line-height: 40px;
display: flex;
}
</style>