江河模块修改

This commit is contained in:
shixiaoman
2021-12-02 12:25:32 +08:00
parent 0c9e147c1c
commit 113dabeb89
11 changed files with 840 additions and 32 deletions

View File

@@ -7,13 +7,13 @@
<a-tab-pane key="base" tab="数据总览">
<base-statistic></base-statistic>
</a-tab-pane>
<a-tab-pane tab="月水质达标" key="base1">
<a-tab-pane tab="月水质达标" key="base1">
<month-standard ></month-standard>
</a-tab-pane>
<a-tab-pane tab="平均水质达标" key="base2">
<avg-standard></avg-standard>
</a-tab-pane>
<a-tab-pane tab="月综合指数" key="base3">
<a-tab-pane tab="月综合指数" key="base3">
<month-index ></month-index>
</a-tab-pane>
<a-tab-pane tab="平均水质指数" key="base4">
@@ -24,11 +24,33 @@
<a-tab-pane tab="水功能区" key="ccb">
<a-tabs v-model:activeWater="activeWater">
<a-tab-pane tab="自治区级水功能" key="water1">
<auto-statis></auto-statis>
<a-tabs v-model:autoWater="autoWater">
<a-tab-pane tab="自治区级水功能统计" key="auto1">
<auto-statis></auto-statis>
</a-tab-pane>
<a-tab-pane tab="自治区水功能达标率" key="auto2">
<auto-standard></auto-standard>
</a-tab-pane>
<a-tab-pane tab="自治区水功能同比/环比" key="auto3">
<auto-yoy></auto-yoy>
</a-tab-pane>
</a-tabs>
</a-tab-pane>
<a-tab-pane tab="国家级水功能" key="water2">
<national-statis></national-statis>
<a-tabs v-model:nationalWater="nationalWater">
<a-tab-pane tab="国家级水功能统计" key="national">
<national-statis></national-statis>
</a-tab-pane>
<a-tab-pane tab="国家级水功能达标率" key="national2">
<national-standard></national-standard>
</a-tab-pane>
<a-tab-pane tab="国家级水功能同比/环比" key="national3">
<national-yoy></national-yoy>
</a-tab-pane>
</a-tabs>
</a-tab-pane>
</a-tabs>
</a-tab-pane>
<a-tab-pane tab="水站" key="ccd">
@@ -57,6 +79,11 @@
import AvgStandard from "./avg-standard.vue";
import MonthIndex from "./base-index.vue";
import AvgIndex from "./avg-index.vue";
import AutoStandard from "../../water-function-area/statistic/auto-standard.vue";
import AutoYoy from "../../water-function-area/statistic/auto-yoy.vue";
import NationalStandard from "../../water-function-area/statistic/national-standard.vue";
import NationalYoy from "../../water-function-area/statistic/national-yoy.vue";
export default {
name: 'StatisticAirIndex',
components: {
@@ -69,13 +96,19 @@
AvgStandard,
MonthIndex,
AvgIndex,
AutoStandard,
AutoYoy,
NationalStandard,
NationalYoy,
},
data() {
return {
activeKey: 'cca',
active: 'base',
activeWater: 'water1',
activeSite:'site1'
activeSite:'site1',
autoWater:'auto1',
nationalWater:'national'
};
},