| | |
| | | <!-- 日均值 --> |
| | | |
| | | <script> |
| | | import InputSearch from '@/sfc/InputSearch.vue' |
| | | import AreaAndmonitorType from '@/sfc/AreaAndmonitorType.vue' |
| | | import exceptionApi from '@/api/exceptionApi.js' |
| | | |
| | | import DustRadarChart from '@/views/risk_assessment/components/DustRadarChart.vue' |
| | | import LineChart from '@/views/risk_assessment/components/FYLineChart.vue' |
| | | import FYLineChart from '@/components/chart/FYLineChart.vue' |
| | | |
| | | import index from '@/utils/risk_estimate_common_function/index.js' |
| | | import ButtonClick from '@/sfc/ButtonClick.vue' |
| | |
| | | } |
| | | }, |
| | | components: { |
| | | LineChart, |
| | | FYLineChart, |
| | | InputSearch, |
| | | AreaAndmonitorType, |
| | | DustRadarChart, |
| | |
| | | <el-row :gutter="20"> |
| | | <el-col :span="12"> |
| | | <el-card shadow="never" class="card-value"> |
| | | <LineChart |
| | | <FYLineChart |
| | | title="日均值" |
| | | :chartData="chartData1" |
| | | yName="mg/m³" |
| | | seriesName="日均值" |
| | | :areaColor="areaColor" |
| | | > |
| | | </LineChart> |
| | | </FYLineChart> |
| | | </el-card> |
| | | </el-col> |
| | | |
| | | <el-col :span="12"> |
| | | <el-card shadow="never" class="card-value"> |
| | | <LineChart |
| | | <FYLineChart |
| | | title="日有效率" |
| | | :chartData="chartData3" |
| | | yName="%" |
| | | seriesName="日有效率" |
| | | :areaColor="areaColor" |
| | | > |
| | | </LineChart> |
| | | </FYLineChart> |
| | | </el-card> |
| | | </el-col> |
| | | </el-row> |