49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			Vue
		
	
	
	
 | 
						|
 | 
						|
<template>
 | 
						|
  <new-bg>
 | 
						|
    <flex-col>
 | 
						|
      <system-title show-back custom-title="有组织排放统计"/>
 | 
						|
      <ModuleContent padding="0px 20px 20px">
 | 
						|
  <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>
 | 
						|
      </ModuleContent>
 | 
						|
    </flex-col>
 | 
						|
  </new-bg>
 | 
						|
</template>
 | 
						|
 | 
						|
<script>
 | 
						|
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";
 | 
						|
 | 
						|
export default {
 | 
						|
  name: "paifangtongji",
 | 
						|
  components: {ModuleContent, NewBg, SystemTitle, FlexCol},
 | 
						|
  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>
 |