123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- <template>
- <div class="sensor-container">
- <a-tabs class="tabs-box" type="card" v-model:activeKey="activeKey" @change="tabChange">
- <a-tab-pane key="1" tab="实时预警">
- <div class="box-bg table-box" style="margin-bottom: 10px">
- <label style="color: #fff">设备类型:</label>
- <MonitorTable
- ref="SensorMonitorRef"
- columnsType="alarm_history"
- :dataSource="dataSource"
- design-scope="alarm"
- @select-row="getSelectRow"
- :formConfi="formConfig"
- title="传感器监测"
- >
- <template #filterCell="{ column, record }">
- <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : 'red'">{{
- record.warnFlag == 0 ? '正常' : '报警'
- }}</a-tag>
- <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == '0' ? '#f00' : 'green'">{{
- record.netStatus == '0' ? '断开' : '连接'
- }}</a-tag>
- </template>
- </MonitorTable>
- </div>
- <div class="charts-box box-bg">
- <BarAndLine
- v-if="chartsColumns.length > 0"
- :chartsColumnsType="selectData.deviceType"
- xAxisPropType="readTime"
- :dataSource="detailDataSource"
- height="100%"
- :chartsColumns="chartsColumns"
- chartsType="detail"
- :option="echartsOption"
- @refresh="refreshEchatrs"
- />
- </div>
- </a-tab-pane>
- <a-tab-pane key="2" tab="实时报警">
- <div class="tab-item table-box box-bg padding-0">
- <HistoryTable
- columns-type="modelsensor"
- device-type="modelsensor"
- :device-list-api="baseList"
- @change="historyDataSourceChange"
- designScope="modelsensor-history"
- />
- </div>
- <div class="charts-box box-bg">
- <BarAndLine
- v-if="chartsColumns.length > 0"
- :chartsColumnsType="selectData.deviceType"
- xAxisPropType="gcreatetime"
- :dataSource="historyDataSource"
- height="100%"
- :chartsColumns="chartsColumns"
- chartsType="history"
- :option="echartsOption1"
- @refresh="refreshEchatrs"
- />
- </div>
- </a-tab-pane>
- <a-tab-pane key="3" tab="报警历史">
- <div class="tab-item box-bg">
- <AlarmHistoryTable columns-type="alarm" device-type="modelsensor" :device-list-api="baseList" designScope="alarm-history" />
- </div>
- </a-tab-pane>
- </a-tabs>
- <div class="title-text">
- {{ selectData.strname }}
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import BarAndLine from '/@/components/chart/BarAndLine.vue';
- import { onBeforeMount, ref, onMounted, onUnmounted, toRaw, reactive, nextTick } from 'vue';
- import MonitorTable from '../comment/MonitorTable.vue';
- import HistoryTable from '../comment/HistoryTable.vue';
- import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
- import { warningList } from './alarm.api';
- import { formConfig } from './alarm.data';
- import { deviceList } from '../../deviceManager/comment/pointTabel/point.api';
- const SensorMonitorRef = ref();
- const deviceBaseList = ref([]);
- const activeKey = ref('1');
- const deviceKind = ref('');
- const deviceTypeOption = ref([]);
- // 默认初始是第一行
- const selectRowIndex = ref(0);
- const dataSource = ref([]);
- const detailDataSource = ref<any[]>([]);
- const historyDataSource = ref<any[]>([]);
- const chartsColumns = ref<any[]>([]);
- const echartsOption = {
- grid: {
- top: '20%',
- left: '10px',
- right: '5px',
- bottom: '5%',
- containLabel: true,
- },
- toolbox: {
- feature: {},
- },
- };
- const selectData = reactive({
- strname: '',
- deviceType: '',
- deviceID: '',
- });
- const tabChange = (activeKeyVal) => {
- activeKey.value = activeKeyVal;
- };
- // https获取监测数据
- let timer: null | NodeJS.Timeout = null;
- const getMonitor = (flag = false) => {
- if (Object.prototype.toString.call(timer) === '[object Null]') {
- timer = setTimeout(
- async () => {
- await getDataSource();
- if (timer) {
- timer = null;
- }
- getMonitor();
- },
- flag ? 0 : 1000
- );
- }
- };
- const getDataSource = async () => {
- const res = await warningList({});
- dataSource.value = res.list.records || [];
- // if(dataSource.value.length > 0){
- // dataSource.value.map((data: any) => {
- // const readData = data.readData;
- // data = Object.assign(data, readData);
- // return data;
- // });
- // }
- };
- const getSelectRow = (selectRow, index) => {
- if (!selectRow) return;
- selectRowIndex.value = index;
- const baseData: any = deviceBaseList.value.find((baseData: any) => baseData.id === selectRow.deviceID);
- Object.assign(selectData, selectRow, baseData);
- if (selectData.deviceType) {
- if (timer) {
- clearTimeout(timer);
- timer = undefined;
- }
- if (activeKey.value === '1') detailDataSource.value = [];
- if (activeKey.value === '2') historyDataSource.value = [];
- handleChange(selectData.deviceType);
- }
- };
- function handleChange(type) {
- if (type === 'modelsensor_multi') {
- chartsColumns.value = [
- {
- legend: '气压值',
- seriesName: '(Pa)',
- ymax: 50,
- yname: 'Pa',
- linetype: 'bar',
- yaxispos: 'left',
- color: '#37BCF2',
- sort: 1,
- xRotate: 0,
- dataIndex: 'pa',
- },
- {
- legend: '温度',
- seriesName: '(℃)',
- ymax: 50,
- yname: '℃',
- linetype: 'bar',
- yaxispos: 'right',
- color: '#FC4327',
- sort: 2,
- xRotate: 0,
- dataIndex: 'temperature',
- },
- ];
- } else if (type === 'modelsensor_smoke') {
- chartsColumns.value = [
- {
- legend: '烟雾浓度',
- seriesName: '(%)',
- ymax: 20,
- yname: '%',
- linetype: 'bar',
- yaxispos: 'left',
- color: '#37BCF2',
- sort: 1,
- xRotate: 0,
- dataIndex: 'windSpeed',
- },
- ];
- } else if (type === 'modelsensor_speed') {
- chartsColumns.value = [
- {
- legend: '风速',
- seriesName: '(m/s)',
- ymax: 20,
- yname: 'm/s',
- linetype: 'bar',
- yaxispos: 'left',
- color: '#37BCF2',
- sort: 1,
- xRotate: 0,
- dataIndex: 'windSpeed',
- },
- ];
- } else if (type === 'modelsensor_gas') {
- chartsColumns.value = [
- {
- legend: '甲烷',
- seriesName: '(%)',
- ymax: 20,
- yname: '%',
- linetype: 'bar',
- yaxispos: 'left',
- color: '#37BCF2',
- sort: 1,
- xRotate: 0,
- dataIndex: 'windSpeed',
- },
- ];
- }
- console.log('[ type ] >', type, chartsColumns.value);
- }
- function refreshEchatrs() {
- timer = null;
- getMonitor();
- console.log('echarts 刷新');
- }
- function historyDataSourceChange(dataSource) {
- historyDataSource.value = dataSource;
- if (historyDataSource.value.length > 0) handleChange(historyDataSource.value[0].gdevicetype);
- }
- onMounted(async () => {
- getMonitor(true);
- });
- onUnmounted(() => {
- if (timer) {
- clearTimeout(timer);
- timer = undefined;
- }
- });
- </script>
- <style lang="less" scoped>
- @import '/@/design/vent/color.less';
- @import '/@/design/vent/modal.less';
- .padding-0 {
- padding: 10px 0 !important;
- }
- .sensor-container {
- position: relative;
- top: 65px;
- padding: 10px;
- z-index: 999;
- max-height: calc(100vh - 150px);
- .@{ventSpace}-tabs {
- max-height: calc(100vh - 100px);
- .tab-item {
- max-height: calc(100vh - 170px);
- overflow-y: auto;
- }
- }
- .title-text {
- position: absolute;
- top: -14px;
- left: 0;
- width: 100%;
- text-align: center;
- color: #fff;
- }
- .table-box {
- height: calc(60vh - 150px);
- padding: 20px 10px;
- overflow-y: auto;
- }
- .box-bg {
- border: 1px solid #4d7ad855;
- border-radius: 2px;
- // background-color: #001d3055;
- -webkit-backdrop-filter: blur(8px);
- backdrop-filter: blur(8px);
- box-shadow: 0 0 10px #5984e055 inset;
- background-color: #00b3ff12;
- }
- .charts-box {
- height: calc(40vh - 80px);
- padding: 5px 10px;
- margin-top: 10px;
- }
- }
- :deep(.@{ventSpace}-tabs-tabpane-active) {
- height: 100%;
- }
- :deep(.@{ventSpace}-tabs-card) {
- .@{ventSpace}-tabs-tab {
- background: linear-gradient(#2cd1ff55, #1eb0ff55);
- border-color: #74e9fe;
- border-radius: 0%;
- &:hover {
- color: #64d5ff;
- }
- }
- .@{ventSpace}-tabs-tab.@{ventSpace}-tabs-tab-active .@{ventSpace}-tabs-tab-btn {
- color: aqua;
- }
- .@{ventSpace}-tabs-nav::before {
- border-color: #74e9fe;
- }
- .@{ventSpace}-picker,
- .@{ventSpace}-select-selector {
- width: 100% !important;
- background: #00000017 !important;
- border: 1px solid @vent-form-item-boder !important;
- input,
- .@{ventSpace}-select-selection-item,
- .@{ventSpace}-picker-suffix {
- color: #fff !important;
- }
- .@{ventSpace}-select-selection-placeholder {
- color: #b7b7b7 !important;
- }
- }
- .@{ventSpace}-pagination-next,
- .action,
- .@{ventSpace}-select-arrow,
- .@{ventSpace}-picker-separator {
- color: #fff !important;
- }
- .@{ventSpace}-table-cell-row-hover {
- background: #264d8833 !important;
- }
- .@{ventSpace}-table-row-selected {
- background: #00c0a311 !important;
- td {
- background-color: #00000000 !important;
- }
- }
- .@{ventSpace}-table-thead {
- // background: linear-gradient(#004a8655 0%, #004a86aa 10%) !important;
- background: #3d9dd45d !important;
- & > tr > th,
- .@{ventSpace}-table-column-title {
- // color: #70f9fc !important;
- border-color: #84f2ff !important;
- border-left: none !important;
- border-right: none !important;
- padding: 7px;
- }
- }
- .@{ventSpace}-table-tbody {
- tr > td {
- padding: 12px;
- }
- }
- .@{ventSpace}-table-tbody > tr:hover.@{ventSpace}-table-row > td {
- background-color: #26648855 !important;
- }
- .jeecg-basic-table-row__striped {
- // background: #97efff11 !important;
- td {
- background-color: #97efff11 !important;
- }
- }
- }
- </style>
|