lg_frontend/pages/youzuzhi/paifangtongji.vue

44 lines
790 B
Vue

<template>
<div class="paifangtongji" style="height: 100vh;overflow: hidden">
<a-page-header
:ghost="false"
style="border-bottom: 1px solid rgb(235, 237, 240)"
title="有组织排放统计"
@back="() => $router.go(-1)"
/>
<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>
</template>
<script>
export default {
name: "paifangtongji",
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>