lg_frontend/pages/youzuzhi/paifangtongji.vue

53 lines
1.5 KiB
Vue
Raw Normal View History

2024-07-21 00:23:30 +00:00
<template>
2024-08-05 16:17:35 +00:00
<new-bg>
<flex-col>
2024-08-18 23:14:54 +00:00
<system-title show-back />
2024-08-05 16:17:35 +00:00
<ModuleContent padding="0px 20px 20px">
2024-08-18 23:14:54 +00:00
<web2-title>有组织排放统计</web2-title>
<split num="16"></split>
<a-tabs default-active-key="1" class="custom-tab">
<a-tab-pane key="1" tab="总体排放">
<a-table :columns="columns" :data-source="data"/>
</a-tab-pane>
<a-tab-pane key="2" tab="VOC">
<a-table :columns="columns" :data-source="data"/>
</a-tab-pane>
<a-tab-pane key="3" tab="CEMS" force-render>
<a-table :columns="columns" :data-source="data"/>
</a-tab-pane>
</a-tabs>
2024-08-05 16:17:35 +00:00
</ModuleContent>
</flex-col>
</new-bg>
2024-07-21 00:23:30 +00:00
</template>
<script>
2024-08-05 16:17:35 +00:00
import FlexCol from "../../components/FlexCol.vue";
import SystemTitle from "../../components/smallCommon/SystemTitle.vue";
import NewBg from "../../components/NewBg.vue";
import ModuleContent from "../../components/ModuleContent.vue";
2024-08-18 23:14:54 +00:00
import Web2Title from "../../components/smallCommon/Web2Title.vue";
import Web3Title from "../../components/smallCommon/Web3Title.vue";
import Split from "../../components/Split.vue";
2024-08-05 16:17:35 +00:00
2024-07-21 00:23:30 +00:00
export default {
name: "paifangtongji",
2024-08-18 23:14:54 +00:00
components: {Split, Web3Title, Web2Title, ModuleContent, NewBg, SystemTitle, FlexCol},
data() {
2024-07-21 00:23:30 +00:00
return {
data: [],
columns: [
2024-08-18 23:14:54 +00:00
{title: '名词', key: 'name'},
{title: 'NO', key: 'NO'},
{title: 'SO2', key: 'SO2'},
{title: 'TSP', key: 'TSP'},
2024-07-21 00:23:30 +00:00
]
}
}
}
</script>
<style scoped lang="less">
</style>