饮用水监测数据报送表
This commit is contained in:
91
src/views/water/drinking-water/statistic/city/index.vue
Normal file
91
src/views/water/drinking-water/statistic/city/index.vue
Normal file
@@ -0,0 +1,91 @@
|
||||
<template>
|
||||
<div>
|
||||
<a-tabs v-model:activeKey="activeCity">
|
||||
<a-tab-pane tab="监测数据报送表" key="city" >
|
||||
<base-statistic :searchForm="searchForm" :filterKeys="filterKeys" @search="changeSearch" @changeFilter="changeFilter" :visiable="activeCity=='city'"></base-statistic>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="报送情况说明表" key="base1">
|
||||
<city-appraise :searchForm="searchForm" :filterKeys="filterKeys" @search="changeSearch" @changeFilter="changeFilter" :visiable="activeCity=='base1'"></city-appraise>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="取水量统计" key="base3">
|
||||
<city-water-withdrawal :searchForm="searchForm" :filterKeys="filterKeys" @search="changeSearch" @changeFilter="changeFilter" :visiable="activeCity=='base3'"></city-water-withdrawal>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="超标评价" key="base4">
|
||||
<city-over-standard :searchForm="searchForm" :filterKeys="filterKeys" @search="changeSearch" @changeFilter="changeFilter" :visiable="activeCity=='base4'"></city-over-standard>
|
||||
</a-tab-pane>
|
||||
|
||||
|
||||
<a-tab-pane tab="水质类别" key="base2" :visiable="activeCity=='base2'">
|
||||
<city-water-quality></city-water-quality>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="达标率" key="base6" :visiable="activeCity=='base6'">
|
||||
<city-month-standard></city-month-standard>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane tab="综合指数" key="base5" :visiable="activeCity=='base5'">
|
||||
<city-avg-index></city-avg-index>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
<script>
|
||||
/**
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
//市级监测数据报表
|
||||
import BaseStatistic from "./base.vue"
|
||||
// 报送情况说明
|
||||
import cityAppraise from "./situation.vue"
|
||||
// 取水量
|
||||
import cityWaterWithdrawal from "../city/waterCount.vue"
|
||||
// 超标评价
|
||||
import cityOverStandard from '../city/overStandard.vue'
|
||||
|
||||
import cityWaterQuality from "../cityWaterQuality.vue"
|
||||
import cityAvgIndex from "../city-avg-index.vue"
|
||||
import cityMonthStandard from "../city-base-standard.vue"
|
||||
|
||||
|
||||
|
||||
|
||||
export default {
|
||||
name: 'city-com',
|
||||
components: {
|
||||
BaseStatistic,
|
||||
cityAppraise,
|
||||
cityWaterQuality,
|
||||
cityAvgIndex,
|
||||
cityMonthStandard,
|
||||
cityWaterWithdrawal,
|
||||
|
||||
cityOverStandard
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
activeCity:'city',
|
||||
searchForm:{
|
||||
checked: 1,
|
||||
page:1,
|
||||
limit:10,
|
||||
drinkingWaterAnalyse:{
|
||||
regionLevel:"市级"
|
||||
},
|
||||
},
|
||||
filterKeys:[]
|
||||
};
|
||||
|
||||
},
|
||||
methods: {
|
||||
changeSearch(data){
|
||||
this.searchForm = data
|
||||
},
|
||||
changeFilter(data){
|
||||
this.filterKeys = data
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
</script>
|
||||
Reference in New Issue
Block a user