空气统计,声字典年份打底
This commit is contained in:
265
src/views/atmosphere/air/statistic/area-base.vue
Normal file
265
src/views/atmosphere/air/statistic/area-base.vue
Normal file
@@ -0,0 +1,265 @@
|
||||
<template>
|
||||
<div class="ele-body">
|
||||
<a-card :bordered="false">
|
||||
<!-- 搜索表单 -->
|
||||
<a-form
|
||||
:model="where"
|
||||
layout="vertical"
|
||||
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
||||
>
|
||||
<a-row>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="区域等级:">
|
||||
<a-select v-model:value="where.regionLevel">
|
||||
<a-select-option
|
||||
v-for="(item) in modelOptions"
|
||||
:key="item.value"
|
||||
>{{ item.label }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间范围:">
|
||||
<a-range-picker v-model:value="time"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row>
|
||||
<a-col :lg="24" :md="24" :sm="24" :xs="24">
|
||||
<a-space>
|
||||
<a-button type="primary" @click="reload">查询</a-button>
|
||||
<a-button @click="reset">重置</a-button>
|
||||
<a-button @click="exportFile">导出Excel</a-button>
|
||||
</a-space>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<!-- 表格 -->
|
||||
<ele-pro-table
|
||||
v-model:selection="selectionList"
|
||||
ref="table"
|
||||
row-key="ambientAirId"
|
||||
:need-page="false"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
:init-load="false"
|
||||
@done="(d) => (data = d.data)"
|
||||
method="POST"
|
||||
>
|
||||
|
||||
</ele-pro-table>
|
||||
</a-card>
|
||||
</div>
|
||||
<!-- 编辑弹窗 -->
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import _ from "lodash";
|
||||
import XLSX from "xlsx";
|
||||
import {statisticAreaBase, getColumnOptions} from "@/api/ecology/air";
|
||||
// import { Modal } from "ant-design-vue";
|
||||
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
||||
import moment from "moment";
|
||||
|
||||
// import utils from "./utils";
|
||||
export default {
|
||||
name: "StatisticAirAreaBase",
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
data: [],
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
url: statisticAreaBase,
|
||||
selection: [],
|
||||
modelOptions: [
|
||||
{label: "市", value: "city"},
|
||||
{label: "县", value: "county"},
|
||||
{label: "站点", value: "place"},
|
||||
|
||||
],
|
||||
// 表格列配置
|
||||
columns: [
|
||||
{title: "日期", dataIndex: "monitorTime",align:"center"},
|
||||
|
||||
{title: "SO2五象", dataIndex: "wuXiangXinQuSo2",align:"center"},
|
||||
{title: "NO2五象", dataIndex: "wuXiangXinQuNo2",align:"center"},
|
||||
{title: "PM10五象", dataIndex: "wuXiangXinQuPm10",align:"center"},
|
||||
{title: "CO五象", dataIndex: "wuXiangXinQuCo",align:"center"},
|
||||
{title: "O3五象", dataIndex: "wuXiangXinQuO3",align:"center"},
|
||||
{title: "PM2.5五象", dataIndex: "wuXiangXinQuPm25",align:"center"},
|
||||
{title: "AQI五象", dataIndex: "wuXiangXinQuAqi",align:"center"},
|
||||
{title: "类别五象", dataIndex: "wuXiangXinQuAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2兴宁", dataIndex: "xingNingSo2",align:"center"},
|
||||
{title: "NO2兴宁", dataIndex: "xingNingNo2",align:"center"},
|
||||
{title: "PM10兴宁", dataIndex: "xingNingPm10",align:"center"},
|
||||
{title: "CO兴宁", dataIndex: "xingNingCo",align:"center"},
|
||||
{title: "O3_8h兴宁", dataIndex: "xingNingO3",align:"center"},
|
||||
{title: "PM2.5兴宁", dataIndex: "xingNingPm25",align:"center"},
|
||||
{title: "AQI兴宁", dataIndex: "xingNingAqi",align:"center"},
|
||||
{title: "类别兴宁", dataIndex: "xingNingAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2江南", dataIndex: "jiangNanSo2",align:"center"},
|
||||
{title: "NO2江南", dataIndex: "jiangNanNo2",align:"center"},
|
||||
{title: "PM10江南", dataIndex: "jiangNanPm10",align:"center"},
|
||||
{title: "CO江南", dataIndex: "jiangNanCo",align:"center"},
|
||||
{title: "O3_8h江南", dataIndex: "jiangNanO3",align:"center"},
|
||||
{title: "PM2.5江南", dataIndex: "jiangNanPm25",align:"center"},
|
||||
{title: "AQI江南", dataIndex: "jiangNanAqi",align:"center"},
|
||||
{title: "类别江南", dataIndex: "jiangNanAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2青秀", dataIndex: "qingXiuSo2",align:"center"},
|
||||
{title: "NO2青秀", dataIndex: "qingXiuNo2",align:"center"},
|
||||
{title: "PM10青秀", dataIndex: "qingXiuPm10",align:"center"},
|
||||
{title: "CO青秀", dataIndex: "qingXiuCo",align:"center"},
|
||||
{title: "O3_8h青秀", dataIndex: "qingXiuO3",align:"center"},
|
||||
{title: "PM2.5青秀", dataIndex: "qingXiuPm25",align:"center"},
|
||||
{title: "AQI青秀", dataIndex: "qingXiuAqi",align:"center"},
|
||||
{title: "类别青秀", dataIndex: "qingXiuAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2西乡塘", dataIndex: "xiXiangTangSo2",align:"center"},
|
||||
{title: "NO2西乡塘", dataIndex: "xiXiangTangNo2",align:"center"},
|
||||
{title: "PM10西乡塘", dataIndex: "xiXiangTangPm10",align:"center"},
|
||||
{title: "CO西乡塘", dataIndex: "xiXiangTangCo",align:"center"},
|
||||
{title: "O3_8h西乡塘", dataIndex: "xiXiangTangO3",align:"center"},
|
||||
{title: "PM2.5西乡塘", dataIndex: "xiXiangTangPm25",align:"center"},
|
||||
{title: "AQI西乡塘", dataIndex: "xiXiangTangAqi",align:"center"},
|
||||
{title: "类别西乡塘", dataIndex: "xiXiangTangAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2邕宁", dataIndex: "yongNingSo2",align:"center"},
|
||||
{title: "NO2邕宁", dataIndex: "yongNingNo2",align:"center"},
|
||||
{title: "PM10邕宁", dataIndex: "yongNingPm10",align:"center"},
|
||||
{title: "CO邕宁", dataIndex: "yongNingCo",align:"center"},
|
||||
{title: "O3_8h邕宁", dataIndex: "yongNingO3",align:"center"},
|
||||
{title: "PM2.5邕宁", dataIndex: "yongNingPm25",align:"center"},
|
||||
{title: "AQI邕宁", dataIndex: "yongNingAqi",align:"center"},
|
||||
{title: "类别邕宁", dataIndex: "yongNingAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2良庆", dataIndex: "liangQingSo2",align:"center"},
|
||||
{title: "NO2良庆", dataIndex: "liangQingNo2",align:"center"},
|
||||
{title: "PM10良庆", dataIndex: "liangQingPm10",align:"center"},
|
||||
{title: "CO良庆", dataIndex: "liangQingCo",align:"center"},
|
||||
{title: "O3_8h良庆", dataIndex: "liangQingO3",align:"center"},
|
||||
{title: "PM2.5良庆", dataIndex: "liangQingPm25",align:"center"},
|
||||
{title: "AQI良庆", dataIndex: "liangQingAqi",align:"center"},
|
||||
{title: "类别良庆", dataIndex: "liangQingAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2高新", dataIndex: "gaoXinSo2",align:"center"},
|
||||
{title: "NO2高新", dataIndex: "gaoXinNo2",align:"center"},
|
||||
{title: "PM10高新", dataIndex: "gaoXinPm10",align:"center"},
|
||||
{title: "CO高新", dataIndex: "gaoXinCo",align:"center"},
|
||||
{title: "O3_8h高新", dataIndex: "gaoXinO3",align:"center"},
|
||||
{title: "PM2.5高新", dataIndex: "gaoXinPm25",align:"center"},
|
||||
{title: "AQI高新", dataIndex: "gaoXinAqi",align:"center"},
|
||||
{title: "类别高新", dataIndex: "gaoXinAqiCategory",align:"center"},
|
||||
|
||||
{title: "SO2经开", dataIndex: "jingKaiSo2",align:"center"},
|
||||
{title: "NO2经开", dataIndex: "jingKaiNo2",align:"center"},
|
||||
{title: "PM10经开", dataIndex: "jingKaiPm10",align:"center"},
|
||||
{title: "Co经开", dataIndex: "jingKaiCo",align:"center"},
|
||||
{title: "O3_8h经开", dataIndex: "jingKaiO3",align:"center"},
|
||||
{title: "PM2.5经开", dataIndex: "jingKaiPm25",align:"center"},
|
||||
{title: "AQI经开", dataIndex: "jingKaiAqi",align:"center"},
|
||||
{title: "类别经开", dataIndex: "jingKaiAqiCategory",align:"center"},
|
||||
],
|
||||
regionLevelOptions: [],
|
||||
time: undefined,
|
||||
// 表格搜索条件
|
||||
where: {
|
||||
regionLevel: "place",
|
||||
},
|
||||
// 表格选中数据
|
||||
selectionList: [],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.loadOptionData();
|
||||
this.reload();
|
||||
},
|
||||
methods: {
|
||||
/**获取下来框数据 */
|
||||
loadOptionData() {
|
||||
getColumnOptions("region_level").then((res) => {
|
||||
this.regionLevelOptions = res.data.data.map((item) => {
|
||||
return {
|
||||
label: item,
|
||||
value: item,
|
||||
};
|
||||
});
|
||||
});
|
||||
},
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
const where = _.cloneDeep(this.where);
|
||||
const year = new Date().getFullYear();
|
||||
if (!this.time) {
|
||||
where.timeStart = `${year}-01-01 00:00:00`;
|
||||
where.timeEnd = moment(Date.now()).format("YYYY-MM-DD 00:00:00")
|
||||
} else {
|
||||
// if(this.time[0].year() != this.time[1].year()){
|
||||
// Modal.error({
|
||||
// title: "查询失败",
|
||||
// content: "开始时间与结束时间年份不一致",
|
||||
// })
|
||||
// return;
|
||||
// }
|
||||
where.timeStart = this.time[0].format("YYYY-MM-DD 00:00:00");
|
||||
where.timeEnd = this.time[1].format("YYYY-MM-DD 00:00:00");
|
||||
}
|
||||
this.$refs.table.reload({
|
||||
where
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {
|
||||
regionLevel: "place",
|
||||
};
|
||||
this.time = undefined;
|
||||
this.reload();
|
||||
},
|
||||
exportFile() {
|
||||
const arr = [];
|
||||
const th1 = [];
|
||||
const th2 = [];
|
||||
const merges = []; // 合并
|
||||
const columnsTemp = []; // 树形结构整理成list
|
||||
this.columns.forEach((item,index)=>{
|
||||
if(item.children){
|
||||
item.children.forEach((citem)=>{
|
||||
th1.push(item.title)
|
||||
th2.push(citem.title)
|
||||
columnsTemp.push(citem)
|
||||
})
|
||||
merges.push({s: {r: 0, c: th1.length-item.children.length}, e: {r: 0, c: th1.length-1}})
|
||||
}else{
|
||||
th1.push(item.title)
|
||||
th2.push("")
|
||||
columnsTemp.push(item)
|
||||
merges.push({s: {r: 0, c: index}, e: {r: 1, c: index}})
|
||||
}
|
||||
})
|
||||
arr.push(th1,th2);
|
||||
this.data.forEach((d) => {
|
||||
const td = columnsTemp.map((item) => d[item.dataIndex]);
|
||||
arr.push(td);
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
sheet['!merges'] = merges;
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
|
||||
},
|
||||
},
|
||||
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
</style>
|
||||
294
src/views/atmosphere/air/statistic/area.vue
Normal file
294
src/views/atmosphere/air/statistic/area.vue
Normal file
@@ -0,0 +1,294 @@
|
||||
<template>
|
||||
<div class="ele-body">
|
||||
<a-card :bordered="false">
|
||||
<!-- 搜索表单 -->
|
||||
<a-form
|
||||
:model="where"
|
||||
layout="vertical"
|
||||
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
||||
>
|
||||
<a-row>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="区域等级:">
|
||||
<a-select v-model:value="where.regionLevel">
|
||||
<a-select-option
|
||||
v-for="(item) in modelOptions"
|
||||
:key="item.value"
|
||||
>{{ item.label }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间范围:">
|
||||
<a-range-picker v-model:value="time"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row>
|
||||
<a-col :lg="24" :md="24" :sm="24" :xs="24">
|
||||
<a-space>
|
||||
<a-button type="primary" @click="reload">查询</a-button>
|
||||
<a-button @click="reset">重置</a-button>
|
||||
<a-button @click="exportFile">导出Excel</a-button>
|
||||
</a-space>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<!-- 表格 -->
|
||||
<ele-pro-table
|
||||
v-model:selection="selectionList"
|
||||
ref="table"
|
||||
row-key="ambientAirId"
|
||||
:need-page="false"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
:init-load="false"
|
||||
@done="(d) => (data = d.data)"
|
||||
method="POST"
|
||||
>
|
||||
|
||||
</ele-pro-table>
|
||||
</a-card>
|
||||
</div>
|
||||
<!-- 编辑弹窗 -->
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import _ from "lodash";
|
||||
import XLSX from "xlsx";
|
||||
import {statisticArea, getColumnOptions} from "@/api/ecology/air";
|
||||
import { Modal } from "ant-design-vue";
|
||||
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
||||
import moment from "moment";
|
||||
|
||||
// import utils from "./utils";
|
||||
export default {
|
||||
name: "StatisticAirArea",
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
data: [],
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
url: statisticArea,
|
||||
selection: [],
|
||||
modelOptions: [
|
||||
{label: "市", value: "city"},
|
||||
{label: "县", value: "county"},
|
||||
{label: "站点", value: "place"},
|
||||
|
||||
],
|
||||
// 表格列配置
|
||||
columns: [
|
||||
{title: "站点/县", dataIndex: "place",align:"center"},
|
||||
{
|
||||
title: "二氧化硫", children: [
|
||||
{title: "本次", dataIndex: "so2Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "so2SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "so2ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "so2Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "二氧化氮", children: [
|
||||
{title: "本次", dataIndex: "no2Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "no2SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "no2ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "no2Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "可吸入颗粒物", children: [
|
||||
{title: "本次", dataIndex: "pm10Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "pm10SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "pm10ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "pm10Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "一氧化碳", children: [
|
||||
{title: "本次", dataIndex: "coCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "coSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "coChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "coRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "臭氧", children: [
|
||||
{title: "本次", dataIndex: "o3Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "o3SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "o3ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "o3Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "细颗粒物", children: [
|
||||
{title: "本次", dataIndex: "pm25Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "pm25SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "pm25ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "pm25Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "空气质量综合指数", children: [
|
||||
{title: "本次", dataIndex: "comprehensiveAirQualityIndexCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "comprehensiveAirQualityIndexSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "comprehensiveAirQualityIndexChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "comprehensiveAirQualityIndexRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "优天数", children: [
|
||||
{title: "本次", dataIndex: "excellentDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "excellentDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "excellentDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "excellentDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "良天数", children: [
|
||||
{title: "本次", dataIndex: "goodDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "goodDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "goodDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "goodDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "轻度污染天数", children: [
|
||||
{title: "本次", dataIndex: "lightPollutionDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "lightPollutionDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "lightPollutionDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "lightPollutionDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "中度污染天数", children: [
|
||||
{title: "本次", dataIndex: "moderatelyPollutedDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "moderatelyPollutedDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "moderatelyPollutedDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "moderatelyPollutedDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "良天数", children: [
|
||||
{title: "本次", dataIndex: "goodDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "goodDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "goodDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "goodDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "重度污染天数", children: [
|
||||
{title: "本次", dataIndex: "heavyPollutionDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "heavyPollutionDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "heavyPollutionDaysChangePercentage",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "优良率", children: [
|
||||
{title: "本次", dataIndex: "excellentRateCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "excellentRateSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "excellentRateChangePercentage",align:"center"},
|
||||
]
|
||||
},
|
||||
|
||||
],
|
||||
regionLevelOptions: [],
|
||||
time: undefined,
|
||||
// 表格搜索条件
|
||||
where: {
|
||||
regionLevel: "place",
|
||||
},
|
||||
// 表格选中数据
|
||||
selectionList: [],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.loadOptionData();
|
||||
this.reload();
|
||||
},
|
||||
methods: {
|
||||
/**获取下来框数据 */
|
||||
loadOptionData() {
|
||||
getColumnOptions("region_level").then((res) => {
|
||||
this.regionLevelOptions = res.data.data.map((item) => {
|
||||
return {
|
||||
label: item,
|
||||
value: item,
|
||||
};
|
||||
});
|
||||
});
|
||||
},
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
const where = _.cloneDeep(this.where);
|
||||
const year = new Date().getFullYear();
|
||||
if (!this.time) {
|
||||
where.timeStart = `${year}-01-01 00:00:00`;
|
||||
where.timeEnd = moment(Date.now()).format("YYYY-MM-DD 00:00:00")
|
||||
} else {
|
||||
if(this.time[0].year() != this.time[1].year()){
|
||||
Modal.error({
|
||||
title: "查询失败",
|
||||
content: "开始时间与结束时间年份不一致",
|
||||
})
|
||||
return;
|
||||
}
|
||||
where.timeStart = this.time[0].format("YYYY-MM-DD 00:00:00");
|
||||
where.timeEnd = this.time[1].format("YYYY-MM-DD 00:00:00");
|
||||
}
|
||||
this.$refs.table.reload({
|
||||
where
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {
|
||||
regionLevel: "place",
|
||||
};
|
||||
this.time = undefined;
|
||||
this.reload();
|
||||
},
|
||||
exportFile() {
|
||||
const arr = [];
|
||||
const th1 = [];
|
||||
const th2 = [];
|
||||
const merges = []; // 合并
|
||||
const columnsTemp = []; // 树形结构整理成list
|
||||
this.columns.forEach((item,index)=>{
|
||||
if(item.children){
|
||||
item.children.forEach((citem)=>{
|
||||
th1.push(item.title)
|
||||
th2.push(citem.title)
|
||||
columnsTemp.push(citem)
|
||||
})
|
||||
merges.push({s: {r: 0, c: th1.length-item.children.length}, e: {r: 0, c: th1.length-1}})
|
||||
}else{
|
||||
th1.push(item.title)
|
||||
th2.push("")
|
||||
columnsTemp.push(item)
|
||||
merges.push({s: {r: 0, c: index}, e: {r: 1, c: index}})
|
||||
}
|
||||
})
|
||||
arr.push(th1,th2);
|
||||
this.data.forEach((d) => {
|
||||
const td = columnsTemp.map((item) => d[item.dataIndex]);
|
||||
arr.push(td);
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
sheet['!merges'] = merges;
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
</style>
|
||||
308
src/views/atmosphere/air/statistic/city-county-place.vue
Normal file
308
src/views/atmosphere/air/statistic/city-county-place.vue
Normal file
@@ -0,0 +1,308 @@
|
||||
<template>
|
||||
<div class="ele-body">
|
||||
<a-card :bordered="false">
|
||||
<!-- 搜索表单 -->
|
||||
<a-form
|
||||
:model="where"
|
||||
layout="vertical"
|
||||
:label-col="{ md: { span: 6 }, sm: { span: 24 } }"
|
||||
:wrapper-col="{ md: { span: 18 }, sm: { span: 24 } }"
|
||||
>
|
||||
<a-row>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="区域等级:">
|
||||
<a-select v-model:value="where.regionLevel">
|
||||
<a-select-option
|
||||
v-for="(item) in modelOptions"
|
||||
:key="item.value"
|
||||
>{{ item.label }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间范围:">
|
||||
<a-range-picker v-model:value="time"/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
<a-row>
|
||||
<a-col :lg="24" :md="24" :sm="24" :xs="24">
|
||||
<a-space>
|
||||
<a-button type="primary" @click="reload">查询</a-button>
|
||||
<a-button @click="reset">重置</a-button>
|
||||
<a-button @click="exportFile">导出Excel</a-button>
|
||||
</a-space>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<!-- 表格 -->
|
||||
<ele-pro-table
|
||||
v-model:selection="selectionList"
|
||||
ref="table"
|
||||
row-key="ambientAirId"
|
||||
:need-page="false"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
:init-load="false"
|
||||
@done="(d) => (data = d.data)"
|
||||
method="POST"
|
||||
>
|
||||
|
||||
</ele-pro-table>
|
||||
</a-card>
|
||||
</div>
|
||||
<!-- 编辑弹窗 -->
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import _ from "lodash";
|
||||
import XLSX from "xlsx";
|
||||
import {statisticUrl, getColumnOptions,statisticArea} from "@/api/ecology/air";
|
||||
import { Modal } from "ant-design-vue";
|
||||
import locale from "ant-design-vue/es/date-picker/locale/zh_CN";
|
||||
import moment from "moment";
|
||||
|
||||
// import utils from "./utils";
|
||||
export default {
|
||||
name: "StatisticAirAvg",
|
||||
components: {},
|
||||
data() {
|
||||
return {
|
||||
data: [],
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
// url: statisticUrl,
|
||||
selection: [],
|
||||
modelOptions: [
|
||||
{label: "市", value: "city"},
|
||||
{label: "县", value: "county"},
|
||||
{label: "站点", value: "place"},
|
||||
{label: "城区", value: "area"},
|
||||
|
||||
],
|
||||
// 表格列配置
|
||||
columns: [
|
||||
{title: "站点/县", dataIndex: "place",align:"center"},
|
||||
{
|
||||
title: "二氧化硫", children: [
|
||||
{title: "本次", dataIndex: "so2Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "so2SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "so2ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "so2Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "二氧化氮", children: [
|
||||
{title: "本次", dataIndex: "no2Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "no2SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "no2ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "no2Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "可吸入颗粒物", children: [
|
||||
{title: "本次", dataIndex: "pm10Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "pm10SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "pm10ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "pm10Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "一氧化碳", children: [
|
||||
{title: "本次", dataIndex: "coCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "coSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "coChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "coRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "臭氧", children: [
|
||||
{title: "本次", dataIndex: "o3Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "o3SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "o3ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "o3Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "细颗粒物", children: [
|
||||
{title: "本次", dataIndex: "pm25Current",align:"center"},
|
||||
{title: "上年同期", dataIndex: "pm25SameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "pm25ChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "pm25Rank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "空气质量综合指数", children: [
|
||||
{title: "本次", dataIndex: "comprehensiveAirQualityIndexCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "comprehensiveAirQualityIndexSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "comprehensiveAirQualityIndexChangePercentage",align:"center"},
|
||||
{title: "排名(按浓度值)", dataIndex: "comprehensiveAirQualityIndexRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "优天数", children: [
|
||||
{title: "本次", dataIndex: "excellentDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "excellentDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "excellentDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "excellentDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "良天数", children: [
|
||||
{title: "本次", dataIndex: "goodDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "goodDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "goodDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "goodDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "轻度污染天数", children: [
|
||||
{title: "本次", dataIndex: "lightPollutionDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "lightPollutionDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "lightPollutionDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "lightPollutionDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "中度污染天数", children: [
|
||||
{title: "本次", dataIndex: "moderatelyPollutedDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "moderatelyPollutedDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "moderatelyPollutedDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "moderatelyPollutedDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "良天数", children: [
|
||||
{title: "本次", dataIndex: "goodDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "goodDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "goodDaysChangePercentage",align:"center"},
|
||||
// {title: "排名(按浓度值)", dataIndex: "goodDaysRank",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "重度污染天数", children: [
|
||||
{title: "本次", dataIndex: "heavyPollutionDaysCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "heavyPollutionDaysSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "heavyPollutionDaysChangePercentage",align:"center"},
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "优良率", children: [
|
||||
{title: "本次", dataIndex: "excellentRateCurrent",align:"center"},
|
||||
{title: "上年同期", dataIndex: "excellentRateSameTimeLastYear",align:"center"},
|
||||
{title: "增减(%)", dataIndex: "excellentRateChangePercentage",align:"center"},
|
||||
]
|
||||
},
|
||||
|
||||
],
|
||||
regionLevelOptions: [],
|
||||
time: undefined,
|
||||
// 表格搜索条件
|
||||
where: {
|
||||
regionLevel: "place",
|
||||
},
|
||||
// 表格选中数据
|
||||
selectionList: [],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
this.loadOptionData();
|
||||
this.reload();
|
||||
},
|
||||
computed:{
|
||||
url(){
|
||||
if(this.where.regionLevel == "area"){
|
||||
return statisticArea
|
||||
}else{
|
||||
return statisticUrl
|
||||
}
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
/**获取下来框数据 */
|
||||
loadOptionData() {
|
||||
getColumnOptions("region_level").then((res) => {
|
||||
this.regionLevelOptions = res.data.data.map((item) => {
|
||||
return {
|
||||
label: item,
|
||||
value: item,
|
||||
};
|
||||
});
|
||||
});
|
||||
},
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
const where = _.cloneDeep(this.where);
|
||||
const year = new Date().getFullYear();
|
||||
if (!this.time) {
|
||||
where.timeStart = `${year}-01-01 00:00:00`;
|
||||
where.timeEnd = moment(Date.now()).format("YYYY-MM-DD 00:00:00")
|
||||
} else {
|
||||
if(this.time[0].year() != this.time[1].year()){
|
||||
Modal.error({
|
||||
title: "查询失败",
|
||||
content: "开始时间与结束时间年份不一致",
|
||||
})
|
||||
return;
|
||||
}
|
||||
where.timeStart = this.time[0].format("YYYY-MM-DD 00:00:00");
|
||||
where.timeEnd = this.time[1].format("YYYY-MM-DD 00:00:00");
|
||||
}
|
||||
|
||||
if(this.where.regionLevel == "area"){
|
||||
delete where["regionLevel"]
|
||||
}
|
||||
this.$refs.table.reload({
|
||||
where
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {
|
||||
regionLevel: "place",
|
||||
};
|
||||
this.time = undefined;
|
||||
this.reload();
|
||||
},
|
||||
exportFile() {
|
||||
const arr = [];
|
||||
const th1 = [];
|
||||
const th2 = [];
|
||||
const merges = []; // 合并
|
||||
const columnsTemp = []; // 树形结构整理成list
|
||||
this.columns.forEach((item,index)=>{
|
||||
if(item.children){
|
||||
item.children.forEach((citem)=>{
|
||||
th1.push(item.title)
|
||||
th2.push(citem.title)
|
||||
columnsTemp.push(citem)
|
||||
})
|
||||
merges.push({s: {r: 0, c: th1.length-item.children.length}, e: {r: 0, c: th1.length-1}})
|
||||
}else{
|
||||
th1.push(item.title)
|
||||
th2.push("")
|
||||
columnsTemp.push(item)
|
||||
merges.push({s: {r: 0, c: index}, e: {r: 1, c: index}})
|
||||
}
|
||||
})
|
||||
arr.push(th1,th2);
|
||||
this.data.forEach((d) => {
|
||||
const td = columnsTemp.map((item) => d[item.dataIndex]);
|
||||
arr.push(td);
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
sheet['!merges'] = merges;
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped lang="less">
|
||||
</style>
|
||||
@@ -5,9 +5,18 @@
|
||||
<a-tab-pane key="base" tab="数据总览">
|
||||
<base-statistic></base-statistic>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane key="avg" tab="均值、百分位">
|
||||
<avg-statistic></avg-statistic>
|
||||
<!-- <a-tab-pane v-show="false" key="avg" tab="均值、百分位">-->
|
||||
<!-- <avg-statistic></avg-statistic>-->
|
||||
<!-- </a-tab-pane>-->
|
||||
<a-tab-pane key="ccp" tab="市、县、站点统计">
|
||||
<city-county-place></city-county-place>
|
||||
</a-tab-pane>
|
||||
<a-tab-pane key="area" tab="城区分担浓度统计">
|
||||
<area-base></area-base>
|
||||
</a-tab-pane>
|
||||
<!-- <a-tab-pane key="avg" tab="均值、百分位">-->
|
||||
<!-- <avg-statistic></avg-statistic>-->
|
||||
<!-- </a-tab-pane>-->
|
||||
</a-tabs>
|
||||
</a-card>
|
||||
</div>
|
||||
@@ -21,15 +30,18 @@
|
||||
*/
|
||||
import BaseStatistic from "./base.vue";
|
||||
import AvgStatistic from "./avg";
|
||||
import CityCountyPlace from "./city-county-place";
|
||||
import AreaBase from "./area-base";
|
||||
export default {
|
||||
name: 'StatisticAirIndex',
|
||||
components: {
|
||||
BaseStatistic,AvgStatistic
|
||||
// eslint-disable-next-line vue/no-unused-components
|
||||
BaseStatistic,AvgStatistic,CityCountyPlace,AreaBase
|
||||
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
activeKey: 'avg'
|
||||
activeKey: 'area'
|
||||
};
|
||||
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user