You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
739 B
22 lines
739 B
8 months ago
|
<template>
|
||
|
<a-tabs v-model:activeKey="activeKey" @change="handleTabChange">
|
||
|
<a-tab-pane key="1" tab="全部"> </a-tab-pane>
|
||
|
<a-tab-pane key="2" tab="用电量" force-render> </a-tab-pane>
|
||
|
<a-tab-pane key="3" tab="用水量"> </a-tab-pane>
|
||
|
<a-tab-pane key="4" tab="供水量"> </a-tab-pane>
|
||
|
<a-tab-pane key="5" tab="碳排"> </a-tab-pane>
|
||
|
<a-tab-pane key="6" tab="供热量"> </a-tab-pane>
|
||
|
</a-tabs>
|
||
|
</template>
|
||
|
<script lang="ts" setup>
|
||
|
import { ref } from 'vue';
|
||
|
defineOptions({
|
||
|
name: 'carbonPlanning', // 与页面路由name一致缓存才可生效
|
||
|
});
|
||
|
const activeKey = ref('1');
|
||
|
// 切换tab页的回调
|
||
|
const handleTabChange = (key) => {
|
||
|
console.log('Tab changed:', key);
|
||
|
};
|
||
|
</script>
|