| | |
| | | <!-- 日均值 --> |
| | | <script> |
| | | import TimeSelectWithShortCuts from '../../sfc/TimeSelectWithShortCuts.vue'; |
| | | import InputSearch from '../../sfc/InputSearch.vue'; |
| | | import AreaAndmonitorType from '../../sfc/AreaAndmonitorType.vue'; |
| | | import TimeSelectWithShortCuts from '@/sfc/TimeSelectWithShortCuts.vue'; |
| | | import InputSearch from '@/sfc/InputSearch.vue'; |
| | | import AreaAndmonitorType from '@/sfc/AreaAndmonitorType.vue'; |
| | | |
| | | import DustRadarChart from './components/DustRadarChart.vue'; |
| | | import exceptionApi from '@/api/exceptionApi.js'; |
| | |
| | | <el-container> |
| | | <el-main> |
| | | |
| | | <el-form :inline="true" :model="form"> |
| | | <el-form :inline="true" :model="form" > |
| | | |
| | | <el-form-item> |
| | | <AreaAndmonitorType></AreaAndmonitorType> |
| | | </el-form-item> |
| | | <el-form-item> |
| | | <InputSearch |
| | | :isNeedDefaultSite="1" |
| | | isNeedDefaultSite="1" |
| | | @submit-value="(n) => (form.name = n)" |
| | | ></InputSearch> |
| | | </el-form-item> |
| | |
| | | shadow="never" |
| | | > |
| | | <DustRadarChart :name="['数据有效率','典型异常复现率','异常类型聚集度','数据超标率','数据在线率']" :yData="[bill.valid,bill.exceptionRecurrence,bill.exceptionTypeAggregation,bill.exceeding,bill.online]" ></DustRadarChart> |
| | | 权重:{{ ((bill.online*0.1+bill.valid*0.2+bill.exceeding*0.2+bill.exceptionTypeAggregation*0.2+bill.exceptionRecurrence*0.3)*0.01).toFixed(2) }} |
| | | </el-card> |
| | | |
| | | |
| | | </el-col> |
| | | |
| | | <el-col :xs="24" :sm="24" :md="6" :lg="6" :xl="4"> |
| | |
| | | {{ bill.exceptionRecurrence*100 }}% |
| | | </el-form-item> |
| | | </el-form> |
| | | <!-- <div class="date-text">最大值:{{ bill.max }} mg/m³</div> --> |
| | | <!-- <div>最小值:{{ bill.min }} mg/m³</div> |
| | | <div>均值:{{ bill.avg }} mg/m³</div> |
| | | <div>数据有效率:{{ bill.online }}%</div> |
| | | <div>数据在线率:{{ bill.valid }}%</div> |
| | | <div>数据超标率:{{ bill.exceeding }}%</div> |
| | | <div>异常类型聚集度:{{ bill.exceptionTypeAggregation*100 }}%</div> |
| | | <div>典型异常复现率:{{ bill.exceptionRecurrence*100 }}%</div> --> |
| | | |
| | | |
| | | </el-card> |
| | | </el-col> |