Merge branch 'master' of http://git.gxwebsoft.com/shengtaiting/shengtai-admin
This commit is contained in:
@@ -1,502 +0,0 @@
|
||||
<template>
|
||||
<div class="">
|
||||
<a-form :model="where" :rules="whereRules" :labelCol="{ offset: 1 }">
|
||||
<a-row>
|
||||
<!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="统计模块:">
|
||||
<a-select
|
||||
:options="groupModelOptions"
|
||||
v-model:value="where.groupModel"
|
||||
placeholder="统计模块"
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col> -->
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间细度:">
|
||||
<a-select
|
||||
:options="groupTimeLengthOptions"
|
||||
v-model:value="where.groupTimeLength"
|
||||
placeholder=""
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item name="timeRange" label="时间范围:">
|
||||
<a-range-picker
|
||||
@panelChange="timeRangePanelChange"
|
||||
v-model:value="timeRange"
|
||||
format="YYYY"
|
||||
:mode="['year', 'year']"
|
||||
/>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="昼夜:">
|
||||
<a-select
|
||||
:options="timeSlotOptions"
|
||||
v-model:value="where.timeSlot"
|
||||
placeholder="昼夜"
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
<a-col :lg="12" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="类型:">
|
||||
<a-select
|
||||
v-model:value="where.valueType"
|
||||
:options="valueTypeOptions"
|
||||
mode="multiple"
|
||||
placeholder="至少选择一项"
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<!-- <a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="时间范围:">
|
||||
<a-range-picker @change="reportTimeScopeChange" :mode="['year','year']" separator="~" v-model:value="where.reportTimeScope" ><a-range-picker>
|
||||
<template #renderExtraFooter>
|
||||
extra footer
|
||||
</template>
|
||||
</a-range-picker>
|
||||
</a-form-item>
|
||||
</a-col> -->
|
||||
|
||||
<a-col :lg="12" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item class="ele-text-right" :wrapper-col="{ span: 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-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<ele-pro-table
|
||||
v-if="hisYears.length > 0"
|
||||
ref="table"
|
||||
row-key="id"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:needPage="false"
|
||||
:initLoad="false"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
:method="'POST'"
|
||||
@done="(d) => (data = d.data)"
|
||||
>
|
||||
<template #toolbar>
|
||||
<!-- 搜索表单 -->
|
||||
|
||||
<!-- <a-space>
|
||||
|
||||
</a-space> -->
|
||||
</template>
|
||||
</ele-pro-table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import _ from "lodash";
|
||||
import { ref } from "vue";
|
||||
import XLSX from "xlsx";
|
||||
import {
|
||||
pageFunctionNoiseCompare,
|
||||
getHistoryyears,
|
||||
} from "@/api/ecology/noise/function-sound";
|
||||
export default {
|
||||
name: "StatisticSoundFunctionCompare",
|
||||
components: {},
|
||||
data() {
|
||||
const groupModelOptions = [
|
||||
{ label: "测点", value: "place" },
|
||||
{ label: "城区", value: "area" },
|
||||
{ label: "市", value: "city" },
|
||||
];
|
||||
const groupTimeLengthOptions = [
|
||||
{
|
||||
label: "年",
|
||||
value: "monitor_year",
|
||||
},
|
||||
{
|
||||
label: "季度",
|
||||
value: "quarter",
|
||||
},
|
||||
];
|
||||
|
||||
// const valueTypeOptions = ['Leq','SD','L10','L50','L90','Lmin','Lmax'];
|
||||
const valueTypeOptions = [
|
||||
{
|
||||
label: "Leq",
|
||||
value: "index_Leq",
|
||||
},
|
||||
{
|
||||
label: "SD",
|
||||
value: "index_SD",
|
||||
},
|
||||
{
|
||||
label: "L10",
|
||||
value: "index_L10",
|
||||
},
|
||||
{
|
||||
label: "L50",
|
||||
value: "index_L50",
|
||||
},
|
||||
{
|
||||
label: "L90",
|
||||
value: "index_L90",
|
||||
},
|
||||
{
|
||||
label: "Lmin",
|
||||
value: "index_Lmin",
|
||||
},
|
||||
{
|
||||
label: "Lmax",
|
||||
value: "index_Lmax",
|
||||
},
|
||||
];
|
||||
|
||||
const whereRules = {};
|
||||
return {
|
||||
url: pageFunctionNoiseCompare,
|
||||
data: [],
|
||||
where: {
|
||||
groupModel: "area",
|
||||
groupTimeLength: "monitor_year",
|
||||
reportTimeScope: [],
|
||||
valueType: ["index_Leq"],
|
||||
timeRange: [],
|
||||
},
|
||||
timeRange: [],
|
||||
whereRules,
|
||||
hisYears: [],
|
||||
timeScope: [],
|
||||
columns: [{ title: "年", dataIndex: "year" }],
|
||||
groupModelOptions,
|
||||
groupTimeLengthOptions,
|
||||
valueTypeOptions: ref(valueTypeOptions),
|
||||
timeSlotOptions: [
|
||||
{
|
||||
value: "昼",
|
||||
label: "昼",
|
||||
},
|
||||
{
|
||||
value: "夜",
|
||||
label: "夜",
|
||||
},
|
||||
],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
getHistoryyears().then((res) => {
|
||||
this.hisYears = res.data.data;
|
||||
this.$nextTick(() => {
|
||||
this.reload();
|
||||
});
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
if (this.where.valueType.length == 0) {
|
||||
this.$message.error("请至少选择一个类型");
|
||||
return;
|
||||
}
|
||||
|
||||
// 结束时间必须大于开始时间
|
||||
if (this.where.timeRange && this.where.timeRange.length == 2) {
|
||||
if (this.where.timeRange[0] > this.where.timeRange[1]) {
|
||||
this.$message.error("结束时间必须大于起始时间");
|
||||
return;
|
||||
}
|
||||
this.where.startYear = this.where.timeRange[0];
|
||||
this.where.endYear = this.where.timeRange[1];
|
||||
}
|
||||
this.stableDone();
|
||||
this.$refs.table.reload({
|
||||
where: this.where,
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.where = {
|
||||
model: "area",
|
||||
};
|
||||
this.this.timeScope = [];
|
||||
this.reload();
|
||||
},
|
||||
reportTimeScopeChange(d, dstr) {
|
||||
console.log(d, dstr);
|
||||
},
|
||||
timeRangePanelChange(val) {
|
||||
val[0] && (this.where.timeRange[0] = val[0].year());
|
||||
val[1] && (this.where.timeRange[1] = val[1].year());
|
||||
this.timeRange = val;
|
||||
},
|
||||
// 数据加载完成
|
||||
stableDone() {
|
||||
const columns = [];
|
||||
if (this.where.groupModel == "area") {
|
||||
columns.push({
|
||||
title: "城区",
|
||||
dataIndex: "area",
|
||||
sorter: true,
|
||||
});
|
||||
} else if (this.where.groupModel == "place") {
|
||||
columns.push({
|
||||
title: "测点",
|
||||
dataIndex: "area",
|
||||
sorter: true,
|
||||
});
|
||||
} else if (this.where.groupModel == "city") {
|
||||
columns.push({
|
||||
title: "城市",
|
||||
dataIndex: "area",
|
||||
sorter: true,
|
||||
});
|
||||
}
|
||||
|
||||
this.hisYears.forEach((item) => {
|
||||
if (
|
||||
(!this.where.timeRange[0] || this.where.timeRange[0] <= item) &&
|
||||
(!this.where.timeRange[1] || this.where.timeRange[1] >= item)
|
||||
) {
|
||||
if (this.where.groupTimeLength == "quarter") {
|
||||
columns.push({
|
||||
title: item + "年第一季度Leq",
|
||||
dataIndex: item + "1" + "Leq",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度Leq",
|
||||
dataIndex: item + "2" + "Leq",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度Leq",
|
||||
dataIndex: item + "3" + "Leq",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度Leq",
|
||||
dataIndex: item + "4" + "Leq",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度SD",
|
||||
dataIndex: item + "1" + "Sd",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度SD",
|
||||
dataIndex: item + "2" + "Sd",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度SD",
|
||||
dataIndex: item + "3" + "Sd",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度SD",
|
||||
dataIndex: item + "4" + "Sd",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度L10",
|
||||
dataIndex: item + "1" + "L10",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度L10",
|
||||
dataIndex: item + "2" + "L10",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度L10",
|
||||
dataIndex: item + "3" + "L10",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度L10",
|
||||
dataIndex: item + "4" + "L10",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度L50",
|
||||
dataIndex: item + "1" + "L50",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度L50",
|
||||
dataIndex: item + "2" + "L50",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度L50",
|
||||
dataIndex: item + "3" + "L50",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度L50",
|
||||
dataIndex: item + "4" + "L50",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度L90",
|
||||
dataIndex: item + "1" + "L90",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度L90",
|
||||
dataIndex: item + "2" + "L90",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度L90",
|
||||
dataIndex: item + "3" + "L90",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度L90",
|
||||
dataIndex: item + "4" + "L90",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度Lmin",
|
||||
dataIndex: item + "1" + "Lmin",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度Lmin",
|
||||
dataIndex: item + "2" + "Lmin",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度Lmin",
|
||||
dataIndex: item + "3" + "Lmin",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度Lmin",
|
||||
dataIndex: item + "4" + "Lmin",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第一季度Lmax",
|
||||
dataIndex: item + "1" + "Lmax",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第二季度Lmax",
|
||||
dataIndex: item + "2" + "Lmax",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第三季度Lmax",
|
||||
dataIndex: item + "3" + "Lmax",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
columns.push({
|
||||
title: item + "年第四季度Lmax",
|
||||
dataIndex: item + "4" + "Lmax",
|
||||
customRender: ({ text }) =>text? Number(text).toFixed(1):"",
|
||||
});
|
||||
} else {
|
||||
if (this.where.valueType.includes("index_Leq")) {
|
||||
columns.push({
|
||||
title: item + "年Leq",
|
||||
dataIndex: item + "Leq",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
if (this.where.valueType.includes("index_SD")) {
|
||||
columns.push({
|
||||
title: item + "年SD",
|
||||
dataIndex: item + "Sd",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
if (this.where.valueType.includes("index_L10")) {
|
||||
columns.push({
|
||||
title: item + "年L10",
|
||||
dataIndex: item + "L10",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
if (this.where.valueType.includes("index_L50")) {
|
||||
columns.push({
|
||||
title: item + "年L50",
|
||||
dataIndex: item + "L50",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
if (this.where.valueType.includes("index_L90")) {
|
||||
columns.push({
|
||||
title: item + "年L90",
|
||||
dataIndex: item + "L90",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
if (this.where.valueType.includes("index_Lmin")) {
|
||||
columns.push({
|
||||
title: item + "年Lmin",
|
||||
dataIndex: item + "Lmin",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
if (this.where.valueType.includes("index_Lmax")) {
|
||||
columns.push({
|
||||
title: item + "年Lmax",
|
||||
dataIndex: item + "Lmax",
|
||||
customRender: ({ text }) => {
|
||||
const val = text ? Number(text).toFixed(2) : "";
|
||||
return val;
|
||||
},
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
//
|
||||
this.columns = columns;
|
||||
},
|
||||
exportFile() {
|
||||
const arr = [];
|
||||
const th = this.columns.map((item) => item.title);
|
||||
arr.push(th);
|
||||
this.data.forEach((d) => {
|
||||
const td = this.columns.map((item) => d[item.dataIndex]);
|
||||
arr.push(td);
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
@@ -1,102 +0,0 @@
|
||||
<template>
|
||||
<div class="">
|
||||
<a-form :model="where" :rules="whereRules" :labelCol="{ offset: 1 }">
|
||||
<a-row>
|
||||
<a-col :lg="6" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item label="昼夜:">
|
||||
<a-select
|
||||
:options="timeSlotOptions"
|
||||
v-model:value="where.timeSlot"
|
||||
placeholder="昼夜"
|
||||
>
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="12" :md="12" :sm="24" :xs="24">
|
||||
<a-form-item class="ele-text-right" :wrapper-col="{ span: 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-form-item>
|
||||
</a-col>
|
||||
</a-row>
|
||||
</a-form>
|
||||
<ele-pro-table
|
||||
v-if="hisYears.length > 0"
|
||||
ref="table"
|
||||
row-key="id"
|
||||
:datasource="url"
|
||||
:columns="columns"
|
||||
:where="where"
|
||||
:needPage="false"
|
||||
:initLoad="false"
|
||||
:scroll="{ x: 'max-content' }"
|
||||
:method="'POST'"
|
||||
@done="(d) => (data = d.data)"
|
||||
>
|
||||
<template #toolbar> </template>
|
||||
</ele-pro-table>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
// import _ from "lodash";
|
||||
import XLSX from "xlsx";
|
||||
import {
|
||||
pageFunctionNoiseCompare,
|
||||
getHistoryyears,
|
||||
} from "@/api/ecology/noise/function-sound";
|
||||
export default {
|
||||
name: "StatisticSoundFunctionCompare",
|
||||
components: {},
|
||||
data() {
|
||||
const whereRules = {};
|
||||
return {
|
||||
url: pageFunctionNoiseCompare,
|
||||
data: [],
|
||||
where: {},
|
||||
timeRange: [],
|
||||
whereRules,
|
||||
hisYears: [],
|
||||
timeScope: [],
|
||||
columns: [{ title: "年", dataIndex: "year" }],
|
||||
};
|
||||
},
|
||||
mounted() {
|
||||
getHistoryyears().then((res) => {
|
||||
this.hisYears = res.data.data;
|
||||
this.$nextTick(() => {
|
||||
this.reload();
|
||||
});
|
||||
});
|
||||
},
|
||||
methods: {
|
||||
/* 刷新表格 */
|
||||
reload() {
|
||||
this.$refs.table.reload({
|
||||
where: this.where,
|
||||
});
|
||||
},
|
||||
/* 重置搜索 */
|
||||
reset() {
|
||||
this.reload();
|
||||
},
|
||||
exportFile() {
|
||||
const arr = [];
|
||||
const th = this.columns.map((item) => item.title);
|
||||
arr.push(th);
|
||||
this.data.forEach((d) => {
|
||||
const td = this.columns.map((item) => d[item.dataIndex]);
|
||||
arr.push(td);
|
||||
});
|
||||
let sheet = XLSX.utils.aoa_to_sheet(arr);
|
||||
this.$util.exportSheet(XLSX, sheet, new Date().getTime().toString());
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
</style>
|
||||
@@ -24,13 +24,13 @@
|
||||
</a-col>
|
||||
<a-col :lg="4" :md="8" :sm="24" :xs="24">
|
||||
<a-form-item label="城区:">
|
||||
<a-select mode="multiple" :options="areaOptions" @change="handleAreaChange" placeholder="城区">
|
||||
<a-select mode="multiple" :default-value="['南宁']" v-model:value="queryParams.areaList" :options="areaOptions" placeholder="城区">
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
<a-col :lg="4" :md="8" :sm="24" :xs="24">
|
||||
<a-form-item label="测点名称:">
|
||||
<a-select mode="multiple" :options="placeOptions" @change="handlePlaceChange" placeholder="测点名称">
|
||||
<a-select mode="multiple" v-model:value="queryParams.placeList" :options="placeOptions" placeholder="测点名称">
|
||||
</a-select>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
@@ -63,7 +63,7 @@
|
||||
queryParams: {
|
||||
startYear: 2020,
|
||||
endYear: 2021,
|
||||
areaList: ['兴宁区','西乡塘区'],
|
||||
areaList: [],
|
||||
placeList: []
|
||||
},
|
||||
trendData: [],
|
||||
@@ -78,12 +78,6 @@
|
||||
this.drawTrend()
|
||||
},
|
||||
methods: {
|
||||
handleAreaChange(value) {
|
||||
this.queryParams.areaList = Object.values(value)
|
||||
},
|
||||
handlePlaceChange(value) {
|
||||
this.queryParams.placeList = Object.values(value)
|
||||
},
|
||||
// 下拉列表
|
||||
loadOptionData() {
|
||||
getColumnOptions("place").then((res) => {
|
||||
@@ -101,6 +95,7 @@
|
||||
value: item,
|
||||
};
|
||||
});
|
||||
this.areaOptions.unshift({ label: '南宁市', value: '南宁'})
|
||||
});
|
||||
getColumnOptions("monitor_year").then((res) => {
|
||||
this.yearOptions = res.data.data.map((item) => {
|
||||
@@ -124,6 +119,9 @@
|
||||
})
|
||||
},
|
||||
initChart() {
|
||||
this.trendData.yAxis[0].axisLabel = {
|
||||
formatter: function (value) { return value.toFixed(1);}
|
||||
};
|
||||
echarts.init(document.getElementById("chartColumn")).dispose();
|
||||
this.chartColumn = markRaw(echarts.init(document.getElementById('chartColumn')))
|
||||
this.chartColumn.setOption({
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
:filterKeys="filterKeys"
|
||||
@search="searchData"
|
||||
@exportFile="exportFile"
|
||||
:visiable="visiable"
|
||||
@filterColumns="changeFilter"
|
||||
/>
|
||||
<!-- 表格 -->
|
||||
@@ -56,7 +57,10 @@ export default {
|
||||
default: function () {
|
||||
return []
|
||||
},
|
||||
}
|
||||
},
|
||||
visiable:{
|
||||
typeof:Boolean
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -123,7 +123,7 @@ export default {
|
||||
bill: {},
|
||||
editableData:[],
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{key: "index",title:"序号",dataIndex: "index",width: 48,align: "center",customRender: ({ index }) => index + 1,},
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
<search
|
||||
:searchForm="searchForm"
|
||||
:filterKeys="filterKeys"
|
||||
:visiable="visiable"
|
||||
@search="searchData"
|
||||
@exportFile="exportFile"
|
||||
@filterColumns="changeFilter"
|
||||
@@ -59,11 +60,15 @@ export default {
|
||||
default: function () {
|
||||
return []
|
||||
},
|
||||
}
|
||||
},
|
||||
visiable:{
|
||||
typeof:Boolean
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
data: [],
|
||||
datasource:[],
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
|
||||
@@ -68,15 +68,15 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"监测时间",dataIndex:"city",},
|
||||
{title:"类别",dataIndex:"place",},
|
||||
{title:"点位名称",dataIndex:"sourceWaterName",},
|
||||
{title:"监测时间",dataIndex:"monitorTime",},
|
||||
{title:"类别",dataIndex:"subordinateWater",},
|
||||
{title:"点位名称",dataIndex:"sectionName",},
|
||||
{title:"水质类别",dataIndex:"waterSourceProperty",},
|
||||
{title: "级别", dataIndex: ""},
|
||||
{title: "综合营养指数", dataIndex: ""},
|
||||
{title: "级别", dataIndex: "nutritionLevel"},
|
||||
{title: "综合营养指数", dataIndex: "compositeNutritionIndex"},
|
||||
],
|
||||
|
||||
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"城市名称",dataIndex:"city",},
|
||||
|
||||
@@ -69,7 +69,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"年份",dataIndex:"year",},
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"断面名称",dataIndex:"sectionName",},
|
||||
|
||||
@@ -174,8 +174,10 @@ export default {
|
||||
},
|
||||
// 监听组件显示
|
||||
visiable(val){
|
||||
console.log('change',val)
|
||||
this.emitData(val)
|
||||
window.setTimeout(()=>{
|
||||
let isSearch = (this.where.monitorStartTime && this.where.monitorEndTime) && val;
|
||||
this.emitData(isSearch)
|
||||
},200)
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -174,8 +174,10 @@ export default {
|
||||
},
|
||||
// 监听组件显示
|
||||
visiable(val){
|
||||
console.log('change',val)
|
||||
this.emitData(val)
|
||||
window.setTimeout(()=>{
|
||||
let isSearch = (this.where.monitorStartTime && this.where.monitorEndTime) && val;
|
||||
this.emitData(isSearch)
|
||||
},200)
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -174,8 +174,10 @@ export default {
|
||||
},
|
||||
// 监听组件显示
|
||||
visiable(val){
|
||||
console.log('change',val)
|
||||
this.emitData(val)
|
||||
window.setTimeout(()=>{
|
||||
let isSearch = (this.where.monitorStartTime && this.where.monitorEndTime) && val;
|
||||
this.emitData(isSearch)
|
||||
},200)
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
:filterKeys="filterKeys"
|
||||
@search="searchData"
|
||||
@exportFile="exportFile"
|
||||
:visiable="visiable"
|
||||
@filterColumns="changeFilter"
|
||||
/>
|
||||
<!-- 表格 -->
|
||||
@@ -56,7 +57,10 @@ export default {
|
||||
default: function () {
|
||||
return []
|
||||
},
|
||||
}
|
||||
},
|
||||
visiable:{
|
||||
typeof:Boolean
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"城市名称",dataIndex:"city",},
|
||||
|
||||
@@ -69,7 +69,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"年份",dataIndex:"year",},
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"断面名称",dataIndex:"sectionName",},
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
<search
|
||||
:searchForm="searchForm"
|
||||
:filterKeys="filterKeys"
|
||||
:visiable="visiable"
|
||||
@search="searchData"
|
||||
@exportFile="exportFile"
|
||||
@filterColumns="changeFilter"
|
||||
@@ -56,7 +57,10 @@ export default {
|
||||
default: function () {
|
||||
return []
|
||||
},
|
||||
}
|
||||
},
|
||||
visiable:{
|
||||
typeof:Boolean
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
|
||||
@@ -124,7 +124,7 @@ export default {
|
||||
bill: {},
|
||||
editableData:[],
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{key: "index",title:"序号",dataIndex: "index",width: 48,align: "center",customRender: ({ index }) => index + 1,},
|
||||
|
||||
@@ -6,6 +6,7 @@
|
||||
<search
|
||||
:searchForm="searchForm"
|
||||
:filterKeys="filterKeys"
|
||||
:visiable="visiable"
|
||||
@search="searchData"
|
||||
@exportFile="exportFile"
|
||||
@filterColumns="changeFilter"
|
||||
@@ -59,10 +60,14 @@ export default {
|
||||
default: function () {
|
||||
return []
|
||||
},
|
||||
}
|
||||
},
|
||||
visiable:{
|
||||
typeof:Boolean
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
datasource:[],
|
||||
data: [],
|
||||
locale,
|
||||
bill: {},
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"城市名称",dataIndex:"city",},
|
||||
|
||||
@@ -69,7 +69,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"年份",dataIndex:"year",},
|
||||
|
||||
@@ -68,7 +68,7 @@ export default {
|
||||
locale,
|
||||
bill: {},
|
||||
// 表格数据接口
|
||||
datasource:{},
|
||||
datasource:[],
|
||||
selection: [],
|
||||
columns:[
|
||||
{title:"断面名称",dataIndex:"sectionName",},
|
||||
|
||||
Reference in New Issue
Block a user