lg_frontend/pages/youzuzhi/paifangtongji.vue

49 lines
1.1 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>
<system-title show-back custom-title="有组织排放统计"/>
<ModuleContent padding="0px 20px 20px">
2024-07-21 00:23:30 +00:00
<div class="paifangtongji" style="height: 100vh;overflow: hidden">
<a-row :gutter="16">
<a-col :span="18">
</a-col>
<a-col :span="6">
<a-table :columns="columns" :data-source="data" />
</a-col>
</a-row>
</div>
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-07-21 00:23:30 +00:00
export default {
name: "paifangtongji",
2024-08-05 16:17:35 +00:00
components: {ModuleContent, NewBg, SystemTitle, FlexCol},
2024-07-21 00:23:30 +00:00
data () {
return {
data: [],
columns: [
{ title: '名词', key: 'name' },
{ title: 'NO', key: 'NO' },
{ title: 'SO2', key: 'SO2' },
{ title: 'TSP', key: 'TSP' },
]
}
}
}
</script>
<style scoped lang="less">
</style>