index.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. <template>
  2. <div class="sensor-container">
  3. <a-tabs class="tabs-box" type="card" v-model:activeKey="activeKey" @change="tabChange">
  4. <a-tab-pane key="1" tab="实时监测">
  5. <div class="box-bg table-box" style="margin-bottom: 10px">
  6. <label style="color: #fff">设备类型:</label>
  7. <Select
  8. @change="handleSensorChange"
  9. :options="deviceTypeOption"
  10. :fieldNames="{ label: 'itemText', value: 'itemValue' }"
  11. v-model:value="deviceKind"
  12. style="width: 200px; margin-bottom: 5px"
  13. placeholder="请选择设备类型"
  14. :allowClear="true"
  15. />
  16. <MonitorTable
  17. ref="SensorMonitorRef"
  18. columnsType="modelsensor_monitor"
  19. :dataSource="dataSource"
  20. design-scope="modelsensor_monitor"
  21. @select-row="getSelectRow"
  22. :deviceType="deviceKind"
  23. size="''"
  24. title="传感器监测"
  25. >
  26. <template #filterCell="{ column, record }">
  27. <a-tag v-if="column.dataIndex === 'warnFlag'" :color="record.warnFlag == 0 ? 'green' : 'red'">{{
  28. record.warnFlag == 0 ? '正常' : '报警'
  29. }}</a-tag>
  30. <a-tag v-if="column.dataIndex === 'netStatus'" :color="record.netStatus == 0 ? 'default' : 'green'">{{
  31. record.netStatus == 0 ? '断开' : '连接'
  32. }}</a-tag>
  33. </template>
  34. </MonitorTable>
  35. </div>
  36. <div class="charts-box box-bg">
  37. <BarAndLine
  38. v-if="chartsColumns.length > 0"
  39. :chartsColumnsType="selectData.deviceType"
  40. xAxisPropType="readTime"
  41. :dataSource="detailDataSource"
  42. height="100%"
  43. :chartsColumns="chartsColumns"
  44. chartsType="detail"
  45. @refresh="refreshEchatrs"
  46. />
  47. </div>
  48. </a-tab-pane>
  49. <a-tab-pane key="2" tab="历史数据">
  50. <div class="tab-item table-box box-bg padding-0">
  51. <HistoryTable
  52. columns-type="modelsensor"
  53. device-type="modelsensor"
  54. :device-list-api="baseList"
  55. @change="historyDataSourceChange"
  56. designScope="modelsensor-history"
  57. />
  58. </div>
  59. <div class="charts-box box-bg">
  60. <BarAndLine
  61. v-if="chartsColumns.length > 0"
  62. :chartsColumnsType="selectData.deviceType"
  63. xAxisPropType="gcreatetime"
  64. :dataSource="historyDataSource"
  65. height="100%"
  66. :chartsColumns="chartsColumns"
  67. chartsType="history"
  68. @refresh="refreshEchatrs"
  69. />
  70. </div>
  71. </a-tab-pane>
  72. <a-tab-pane key="3" tab="报警历史">
  73. <div class="tab-item box-bg">
  74. <AlarmHistoryTable columns-type="alarm" device-type="modelsensor" :device-list-api="baseList" designScope="alarm-history" />
  75. </div>
  76. </a-tab-pane>
  77. <a-tab-pane key="4" tab="操作历史">
  78. <div class="tab-item box-bg">
  79. <HandlerHistoryTable columns-type="operatorhistory" device-type="modelsensor" :device-list-api="baseList" designScope="alarm-history" />
  80. </div>
  81. </a-tab-pane>
  82. </a-tabs>
  83. <div class="title-text">
  84. {{ selectData.strname }}
  85. </div>
  86. </div>
  87. </template>
  88. <script setup lang="ts">
  89. import BarAndLine from '/@/components/chart/BarAndLine.vue';
  90. import { Select } from 'ant-design-vue';
  91. import { onBeforeMount, ref, onMounted, onUnmounted, toRaw, reactive, nextTick } from 'vue';
  92. import MonitorTable from '../comment/MonitorTable.vue';
  93. import HistoryTable from '../comment/HistoryTable.vue';
  94. import AlarmHistoryTable from '../comment/AlarmHistoryTable.vue';
  95. import HandlerHistoryTable from '../comment/HandlerHistoryTable.vue';
  96. import { list, getTableList } from './sensor.api';
  97. import { list as baseList } from '../../deviceManager/sensorTabel/sensor.api';
  98. import { deviceList } from '../../deviceManager/comment/pointTabel/point.api';
  99. const SensorMonitorRef = ref();
  100. const deviceBaseList = ref([]);
  101. const activeKey = ref('1');
  102. const deviceKind = ref(null);
  103. const deviceTypeOption = ref([]);
  104. // 默认初始是第一行
  105. const selectRowIndex = ref(0);
  106. const dataSource = ref([]);
  107. const detailDataSource = ref<any[]>([]);
  108. const historyDataSource = ref<any[]>([]);
  109. const chartsColumns = ref<any[]>([]);
  110. const selectData = reactive({
  111. strname: '',
  112. deviceType: '',
  113. });
  114. const tabChange = (activeKeyVal) => {
  115. activeKey.value = activeKeyVal;
  116. detailDataSource.value = [];
  117. };
  118. // https获取监测数据
  119. let timer: null | NodeJS.Timeout = null;
  120. const getMonitor = () => {
  121. if (Object.prototype.toString.call(timer) === '[object Null]') {
  122. timer = setTimeout(async () => {
  123. await getDataSource(deviceKind.value);
  124. if (timer) {
  125. timer = null;
  126. }
  127. getMonitor();
  128. }, 1000);
  129. }
  130. };
  131. const getDataSource = async (devicetype) => {
  132. const type = devicetype ? devicetype : 'modelsensor';
  133. const res = await list({ devicetype: type, pagetype: 'normal' });
  134. dataSource.value = res.msgTxt[0].datalist || [];
  135. dataSource.value.map((data: any) => {
  136. const readData = data.readData;
  137. data = Object.assign(data, readData);
  138. return data;
  139. });
  140. const data: any = toRaw(dataSource.value[selectRowIndex.value]); //maxarea
  141. Object.assign(selectData, data);
  142. if (chartsColumns.value.length <= 0 && selectData.deviceType) {
  143. handleChange(selectData.deviceType);
  144. }
  145. // 如果当前为监测tab
  146. if (activeKey.value === '1') {
  147. const isHas = detailDataSource.value.find((item) => item['readTime'] === selectData['readTime']);
  148. // 获取选中数据
  149. if (!isHas) {
  150. if (detailDataSource.value.length < 15) {
  151. detailDataSource.value.push({ ...selectData });
  152. } else {
  153. detailDataSource.value.shift();
  154. detailDataSource.value.push({ ...selectData });
  155. }
  156. }
  157. }
  158. return data;
  159. };
  160. const getSelectRow = (selectRow, index) => {
  161. if (!selectRow) return;
  162. selectRowIndex.value = index;
  163. const baseData: any = deviceBaseList.value.find((baseData: any) => baseData.id === selectRow.deviceID);
  164. Object.assign(selectData, selectRow, baseData);
  165. if (selectData.deviceType) {
  166. if (timer) {
  167. clearTimeout(timer);
  168. timer = undefined;
  169. }
  170. if (activeKey.value === '1') detailDataSource.value = [];
  171. if (activeKey.value === '2') historyDataSource.value = [];
  172. handleChange(selectData.deviceType);
  173. }
  174. };
  175. // 获取设备基本信息列表
  176. const getDeviceBaseList = () => {
  177. getTableList({ pageSize: 1000 }).then((res) => {
  178. deviceBaseList.value = res.records;
  179. });
  180. };
  181. function handleChange(type) {
  182. if (type === 'modelsensor_multi') {
  183. chartsColumns.value = [
  184. {
  185. legend: '气压值',
  186. seriesName: '(Pa)',
  187. ymax: 50,
  188. yname: 'Pa',
  189. linetype: 'bar',
  190. yaxispos: 'left',
  191. color: '#37BCF2',
  192. sort: 1,
  193. xRotate: 0,
  194. dataIndex: 'pa',
  195. },
  196. {
  197. legend: '温度',
  198. seriesName: '(℃)',
  199. ymax: 50,
  200. yname: '℃',
  201. linetype: 'bar',
  202. yaxispos: 'right',
  203. color: '#FC4327',
  204. sort: 2,
  205. xRotate: 0,
  206. dataIndex: 'temperature',
  207. },
  208. ];
  209. } else if (type === 'modelsensor_smoke') {
  210. chartsColumns.value = [
  211. {
  212. legend: '烟雾浓度',
  213. seriesName: '(%)',
  214. ymax: 20,
  215. yname: '%',
  216. linetype: 'bar',
  217. yaxispos: 'left',
  218. color: '#37BCF2',
  219. sort: 1,
  220. xRotate: 0,
  221. dataIndex: 'windSpeed',
  222. },
  223. ];
  224. } else if (type === 'modelsensor_speed') {
  225. chartsColumns.value = [
  226. {
  227. legend: '风速',
  228. seriesName: '(m/s)',
  229. ymax: 20,
  230. yname: 'm/s',
  231. linetype: 'bar',
  232. yaxispos: 'left',
  233. color: '#37BCF2',
  234. sort: 1,
  235. xRotate: 0,
  236. dataIndex: 'windSpeed',
  237. },
  238. ];
  239. } else if (type === 'modelsensor_gas') {
  240. chartsColumns.value = [
  241. {
  242. legend: '甲烷',
  243. seriesName: '(%)',
  244. ymax: 20,
  245. yname: '%',
  246. linetype: 'bar',
  247. yaxispos: 'left',
  248. color: '#37BCF2',
  249. sort: 1,
  250. xRotate: 0,
  251. dataIndex: 'windSpeed',
  252. },
  253. ];
  254. }
  255. console.log('[ type ] >', type, chartsColumns.value);
  256. }
  257. function handleSensorChange(type) {
  258. setTimeout(() => {
  259. handleChange(type);
  260. if (timer) {
  261. clearTimeout(timer);
  262. timer = null;
  263. }
  264. dataSource.value = [];
  265. detailDataSource.value = [];
  266. getMonitor();
  267. }, 50);
  268. }
  269. function refreshEchatrs() {
  270. timer = null;
  271. getMonitor();
  272. console.log('echarts 刷新');
  273. }
  274. function historyDataSourceChange(dataSource) {
  275. historyDataSource.value = dataSource;
  276. if (historyDataSource.value.length > 0) handleChange(historyDataSource.value[0].gdevicetype);
  277. }
  278. onBeforeMount(() => {
  279. getDeviceBaseList();
  280. });
  281. onMounted(async () => {
  282. getMonitor();
  283. const res = await deviceList({ devicetype: 'modelsensor' });
  284. const obj = res.find((item) => item.itemValue === 'modelsensor');
  285. deviceTypeOption.value = obj ? obj.children : [];
  286. });
  287. onUnmounted(() => {
  288. if (timer) {
  289. clearTimeout(timer);
  290. timer = undefined;
  291. }
  292. });
  293. </script>
  294. <style lang="less" scoped>
  295. @import '/@/design/vent/color.less';
  296. @import '/@/design/vent/modal.less';
  297. .padding-0 {
  298. padding: 10px 0 !important;
  299. }
  300. .sensor-container {
  301. position: relative;
  302. top: 65px;
  303. padding: 10px;
  304. z-index: 999;
  305. max-height: calc(100vh - 150px);
  306. .@{ventSpace}-tabs {
  307. max-height: calc(100vh - 100px);
  308. .tab-item {
  309. max-height: calc(100vh - 170px);
  310. overflow-y: auto;
  311. }
  312. }
  313. .title-text {
  314. position: absolute;
  315. top: -14px;
  316. left: 0;
  317. width: 100%;
  318. text-align: center;
  319. color: #fff;
  320. }
  321. .table-box {
  322. height: calc(60vh - 150px);
  323. padding: 20px 10px;
  324. overflow-y: auto;
  325. }
  326. .box-bg {
  327. border: 1px solid #4d7ad855;
  328. border-radius: 2px;
  329. // background-color: #001d3055;
  330. -webkit-backdrop-filter: blur(8px);
  331. backdrop-filter: blur(8px);
  332. box-shadow: 0 0 10px #5984e055 inset;
  333. background-color: #00b3ff12;
  334. }
  335. .charts-box {
  336. height: calc(40vh - 80px);
  337. padding: 5px 10px;
  338. margin-top: 10px;
  339. }
  340. }
  341. :deep(.@{ventSpace}-tabs-tabpane-active) {
  342. overflow: auto;
  343. }
  344. :deep(.@{ventSpace}-tabs-card) {
  345. .@{ventSpace}-tabs-tab {
  346. background: linear-gradient(#2cd1ff55, #1eb0ff55);
  347. border-color: #74e9fe;
  348. border-radius: 0%;
  349. &:hover {
  350. color: #64d5ff;
  351. }
  352. }
  353. .@{ventSpace}-tabs-tab.@{ventSpace}-tabs-tab-active .@{ventSpace}-tabs-tab-btn {
  354. color: aqua;
  355. }
  356. .@{ventSpace}-tabs-nav::before {
  357. border-color: #74e9fe;
  358. }
  359. .@{ventSpace}-picker,
  360. .@{ventSpace}-select-selector {
  361. width: 100% !important;
  362. background: #00000017 !important;
  363. border: 1px solid @vent-form-item-boder !important;
  364. input,
  365. .@{ventSpace}-select-selection-item,
  366. .@{ventSpace}-picker-suffix {
  367. color: #fff !important;
  368. }
  369. .@{ventSpace}-select-selection-placeholder {
  370. color: #b7b7b7 !important;
  371. }
  372. }
  373. .@{ventSpace}-pagination-next,
  374. .action,
  375. .@{ventSpace}-select-arrow,
  376. .@{ventSpace}-picker-separator {
  377. color: #fff !important;
  378. }
  379. .@{ventSpace}-table-cell-row-hover {
  380. background: #264d8833 !important;
  381. }
  382. .@{ventSpace}-table-row-selected {
  383. background: #00c0a311 !important;
  384. td {
  385. background-color: #00000000 !important;
  386. }
  387. }
  388. .@{ventSpace}-table-thead {
  389. // background: linear-gradient(#004a8655 0%, #004a86aa 10%) !important;
  390. background: #3d9dd45d!important;
  391. & > tr > th,
  392. .@{ventSpace}-table-column-title {
  393. // color: #70f9fc !important;
  394. border-color: #84f2ff !important;
  395. border-left: none !important;
  396. border-right: none !important;
  397. padding: 7px;
  398. }
  399. }
  400. .@{ventSpace}-table-tbody {
  401. tr > td {
  402. padding: 12px;
  403. }
  404. }
  405. .@{ventSpace}-table-tbody > tr:hover.@{ventSpace}-table-row > td {
  406. background-color: #26648855 !important;
  407. }
  408. .jeecg-basic-table-row__striped {
  409. // background: #97efff11 !important;
  410. td {
  411. background-color: #97efff11 !important;
  412. }
  413. }
  414. }
  415. </style>