饮用水框架页面
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="ele-body">
|
||||
<a-card :bordered="false">
|
||||
<a-tabs v-model:activeKey="activeKey">
|
||||
<a-tabs v-model:activeKey="activeWrapKey">
|
||||
<a-tab-pane key="city" tab="市级">
|
||||
<City />
|
||||
</a-tab-pane>
|
||||
@@ -31,7 +31,8 @@
|
||||
</a-tab-pane>
|
||||
|
||||
<a-tab-pane key="village" tab="农村">
|
||||
<a-tabs v-model:active="activeVillage">
|
||||
<Countryside />
|
||||
<!-- <a-tabs v-model:active="activeVillage">
|
||||
<a-tab-pane tab="数据总览" key="village">
|
||||
<village></village>
|
||||
</a-tab-pane>
|
||||
@@ -47,7 +48,7 @@
|
||||
<a-tab-pane tab="综合指数" key="base5">
|
||||
<village-avg-index></village-avg-index>
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
</a-tabs> -->
|
||||
</a-tab-pane>
|
||||
</a-tabs>
|
||||
</a-card>
|
||||
@@ -58,7 +59,7 @@
|
||||
|
||||
import City from './city/index.vue'
|
||||
import County from './county/index.vue'
|
||||
|
||||
import Countryside from './countryside/index.vue'
|
||||
/**
|
||||
*
|
||||
*
|
||||
@@ -69,16 +70,16 @@ import County from './county/index.vue'
|
||||
// import countyData from "./countyData.vue"
|
||||
// import countyData from "./county/base.vue"
|
||||
|
||||
import village from "./villageData.vue"
|
||||
// import village from "./villageData.vue"
|
||||
|
||||
// import countyAppraise from "./countyAppraise.vue"
|
||||
import villageAppraise from "./villageAppraise.vue"
|
||||
// import villageAppraise from "./villageAppraise.vue"
|
||||
// import countyWaterQuality from "./countyWaterQuality.vue"
|
||||
import villageWaterQuality from "./villageWaterQuality.vue"
|
||||
// import villageWaterQuality from "./villageWaterQuality.vue"
|
||||
// import countyAvgIndex from "./county-avg-index.vue"
|
||||
import villageAvgIndex from "./village-avg-index.vue"
|
||||
// import villageAvgIndex from "./village-avg-index.vue"
|
||||
// import countyMonthStandard from "./county-base-standard.vue"
|
||||
import villageMonthStandard from "./village-base-standard.vue"
|
||||
// import villageMonthStandard from "./village-base-standard.vue"
|
||||
// import countyWaterWithdrawal from "./countyWaterWithdrawal.vue"
|
||||
|
||||
|
||||
@@ -87,37 +88,27 @@ import County from './county/index.vue'
|
||||
components: {
|
||||
City,
|
||||
County,
|
||||
Countryside,
|
||||
// countyData,
|
||||
village,
|
||||
// village,
|
||||
// countyAppraise,
|
||||
villageAppraise,
|
||||
// villageAppraise,
|
||||
// countyWaterQuality,
|
||||
villageWaterQuality,
|
||||
// villageWaterQuality,
|
||||
// countyAvgIndex,
|
||||
villageAvgIndex,
|
||||
// villageAvgIndex,
|
||||
// countyMonthStandard,
|
||||
villageMonthStandard,
|
||||
// villageMonthStandard,
|
||||
// countyWaterWithdrawal,
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
activeKey: 'city',
|
||||
activeCity:'city',
|
||||
activeCounty:'county',
|
||||
activeVillage:'village',
|
||||
searchForm:{},
|
||||
filterKeys:[]
|
||||
activeWrapKey: 'city',
|
||||
};
|
||||
|
||||
},
|
||||
methods: {
|
||||
changeSearch(data){
|
||||
this.searchForm = data
|
||||
},
|
||||
changeFilter(data){
|
||||
this.filterKeys = data
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user