index.vue 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577
  1. <template>
  2. <div class="dustMonitor">
  3. <customHeader>色谱仪报表分析</customHeader>
  4. <div class="content-container">
  5. <div class="file-list">
  6. <ul>
  7. <li v-for="item in selectList" :key="item.id" :class="{ selected: item.id === selectedFileId }" @click="handleFileClick(item)">
  8. {{ item.fileName }}
  9. </li>
  10. </ul>
  11. </div>
  12. <div class="table-container">
  13. <a-table :columns="computedColumns" :data-source="tableData" size="small" :pagination="false" :scroll="{ y: 300 }" class="tableW">
  14. <template #bodyCell="{ column, record }">
  15. <template v-if="column.dataIndex === 'action'">
  16. <a class="action-link" @click="toDetail(record)">数据分析</a>
  17. </template>
  18. </template>
  19. </a-table>
  20. <div class="data-container">
  21. <div id="lineChart" class="line-chart"></div>
  22. <div class="data-content">
  23. <div class="title">煤自燃阶段统计分析</div>
  24. <div class="explain">测点共计{{ total }}个</div>
  25. <div class="progress-label">潜伏期阶段:{{ qfqCount }}</div>
  26. <Progress :percent="qfqPercent" size="default" strokeColor="green" :show-info="true" :format="() => qfqCount" />
  27. <div class="progress-label">缓慢氧化升温阶段:{{ latentCount }}</div>
  28. <Progress :percent="latentPercent" size="default" strokeColor="yellow" :show-info="true" :format="() => latentCount" />
  29. <div class="progress-label">加速氧化升温阶段:{{ selfHeatingCount }}</div>
  30. <Progress :percent="selfHeatingPercent" size="default" strokeColor="orange‌" :show-info="true" :format="() => selfHeatingCount" />
  31. <div class="progress-label">剧烈氧化升温阶段:{{ combustionCount }}</div>
  32. <Progress :percent="combustionPercent" size="default" strokeColor="red" :show-info="true" :format="() => combustionCount" />
  33. </div>
  34. </div>
  35. </div>
  36. </div>
  37. <a-modal style="width: 600px; height: 300px" title="爆炸三角形" v-model:visible="modalVisible" :draggable="true" :footer="null">
  38. <div class="blast-delta-container">
  39. <BlastDelta :posMonitor="posMonitor" />
  40. </div>
  41. </a-modal>
  42. </div>
  43. </template>
  44. <script setup lang="ts">
  45. import { ref, onMounted, computed, reactive, shallowRef } from 'vue';
  46. import { columns, Hjtcolumns, Bdcolumns, Bltcolumns, Sgtcolumns } from './bundleSpy-table.data';
  47. import { getbundleSpyInfoList, getAllFileList, getAllFileListById } from './bundleSpy-table.api';
  48. import customHeader from '/@/components/vent/customHeader.vue';
  49. import * as echarts from 'echarts';
  50. import BlastDelta from './modal/blastDelta.vue';
  51. import { Progress } from 'ant-design-vue';
  52. import { useGlobSetting } from '/@/hooks/setting';
  53. // import 'ant-design-vue/dist/antd.css'; // 引入样式
  54. let selectList = ref<any[]>([]);
  55. let formSearch = reactive({
  56. pageNum: 1,
  57. pageSize: 1000,
  58. id: '',
  59. fileName: '',
  60. });
  61. const total = ref(0);
  62. const { sysOrgCode } = useGlobSetting();
  63. const qfqCount = ref(0); // 潜伏期
  64. const latentCount = ref(0); // 缓慢氧化阶段(潜伏期)
  65. const selfHeatingCount = ref(0); // 加速氧化阶段(自热期)
  66. const combustionCount = ref(0); // 剧烈氧化阶段(燃烧期)
  67. const qfqPercent = ref(0); // 潜伏期(潜伏期)
  68. const latentPercent = ref(0); // 缓慢氧化阶段(潜伏期)
  69. const selfHeatingPercent = ref(0); // 加速氧化阶段(自热期)
  70. const combustionPercent = ref(0); // 剧烈氧化阶段(燃烧期)
  71. let tableData = ref<any[]>([]);
  72. let selectedFileId = ref<string | null>(null);
  73. let modalVisible = ref(false);
  74. const posMonitor = shallowRef({});
  75. const computedColumns = computed(() => {
  76. switch (sysOrgCode) {
  77. case 'sdmtjtdltmkhjtj':
  78. return Hjtcolumns; // 活鸡兔对应的列配置
  79. case 'sdmtjtBdmk':
  80. return Bdcolumns; // 保德对应的列配置
  81. case 'sdmtjtbltmk':
  82. return Bltcolumns; // 补连塔对应的列配置
  83. case 'sdmtjtsgtmk':
  84. return Sgtcolumns; // 石圪台对应的列配置
  85. default:
  86. return Bdcolumns; // 默认情况下返回的列配置
  87. }
  88. });
  89. //获取色谱仪报表
  90. async function getTableList(params: any) {
  91. let res = await getbundleSpyInfoList({ type: 'bundleSpy', ...params });
  92. const content = res.content;
  93. let contentArr = JSON.parse(content);
  94. // const contentNewArr = computed(() => {
  95. // return contentArr.map((item) => {
  96. // let internalFireWarnLevel = '';
  97. // const co = item.co_ave;
  98. // const co2 = item.co2_ave;
  99. // const c2h4 = item.c2h4_ave;
  100. // const c2h2 = item.c2h2_ave;
  101. // const coRatio = co / co2;
  102. // if (co >= 0 && co <= 13.75) {
  103. // internalFireWarnLevel = '潜伏期阶段';
  104. // } else if (co > 13.75 && co < 67.2 && coRatio < 0.095) {
  105. // internalFireWarnLevel = '缓慢氧化升温阶段';
  106. // } else if ((co >= 67.2 && co < 1606.3) || (coRatio >= 0.095 && coRatio < 0.322) || c2h4 < 2) {
  107. // internalFireWarnLevel = '加速氧化阶段';
  108. // } else if (co >= 1606.3 || coRatio >= 0.322 || c2h4 >= 2 || c2h2 > 0) {
  109. // internalFireWarnLevel = '剧烈氧化阶段';
  110. // }
  111. // return { ...item, internalFireWarnLevel };
  112. // });
  113. // });
  114. total.value = contentArr.length;
  115. qfqCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '潜伏期阶段').length;
  116. latentCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '缓慢氧化升温阶段').length;
  117. selfHeatingCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '加速氧化升温阶段').length;
  118. combustionCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '剧烈氧化升温阶段').length;
  119. qfqPercent.value = (qfqCount.value / total.value) * 100;
  120. latentPercent.value = (latentCount.value / total.value) * 100;
  121. selfHeatingPercent.value = (selfHeatingCount.value / total.value) * 100;
  122. combustionPercent.value = (combustionCount.value / total.value) * 100;
  123. tableData.value = contentArr;
  124. updateChart(contentArr);
  125. }
  126. async function getTableListById(params: any) {
  127. let res = await getAllFileListById({ ...params });
  128. const content = res.content;
  129. let contentArr = JSON.parse(content);
  130. total.value = contentArr.length;
  131. qfqCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '潜伏期阶段').length;
  132. latentCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '缓慢氧化升温阶段').length;
  133. selfHeatingCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '加速氧化升温阶段').length;
  134. combustionCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '剧烈氧化升温阶段').length;
  135. qfqPercent.value = (qfqCount.value / total.value) * 100;
  136. latentPercent.value = (latentCount.value / total.value) * 100;
  137. selfHeatingPercent.value = (selfHeatingCount.value / total.value) * 100;
  138. combustionPercent.value = (combustionCount.value / total.value) * 100;
  139. tableData.value = contentArr;
  140. updateChart(contentArr);
  141. }
  142. //跳转到爆炸三角形
  143. function toDetail(record: any) {
  144. posMonitor.value = record;
  145. console.log(posMonitor.value);
  146. modalVisible.value = true;
  147. }
  148. //折线图
  149. function updateChart(data: any) {
  150. const chartDom = document.getElementById('lineChart');
  151. const myChart = echarts.init(chartDom);
  152. const categories = data.map((item: any) => item.jcdd);
  153. const c2h2AveValues = data.map((item: any) => parseFloat(item.c2h2_ave));
  154. const c2h4AveValues = data.map((item: any) => parseFloat(item.c2h4_ave));
  155. const ch4AveValues = data.map((item: any) => parseFloat(item.ch4_ave));
  156. const co2AveValues = data.map((item: any) => parseFloat(item.co2_ave));
  157. const coAveValues = data.map((item: any) => parseFloat(item.co_ave));
  158. const o2AveValues = data.map((item: any) => parseFloat(item.o2_ave));
  159. const n2AveValues = data.map((item: any) => parseFloat(item.n2_ave));
  160. const c2h6AveValues = data.map((item: any) => parseFloat(item.c2h6_ave));
  161. const c3h8AveValues = data.map((item: any) => parseFloat(item.c3h8_ave));
  162. const ch4AveBqValues = data.map((item: any) => parseFloat(item.ch4_ave_bq));
  163. const o2AveBqValues = data.map((item: any) => parseFloat(item.o2_ave_bq));
  164. const getSeriesConfig = (sysOrgCode) => {
  165. switch (sysOrgCode) {
  166. case 'sdmtjtdltmkhjtj':
  167. return [
  168. {
  169. name: 'CH₄闭内',
  170. data: ch4AveValues,
  171. yAxisIndex: 1,
  172. type: 'bar',
  173. },
  174. {
  175. name: 'O₂闭内',
  176. data: ch4AveValues,
  177. yAxisIndex: 1,
  178. type: 'bar',
  179. },
  180. {
  181. name: 'CO₂闭内',
  182. data: co2AveValues,
  183. yAxisIndex: 1,
  184. type: 'bar',
  185. },
  186. {
  187. name: 'CO闭内',
  188. data: coAveValues,
  189. yAxisIndex: 1,
  190. type: 'bar',
  191. },
  192. {
  193. name: 'CH₄闭前',
  194. data: ch4AveBqValues,
  195. yAxisIndex: 1,
  196. type: 'bar',
  197. },
  198. {
  199. name: 'O₂闭前',
  200. data: o2AveBqValues,
  201. yAxisIndex: 1,
  202. type: 'bar',
  203. },
  204. ];
  205. case 'sdmtjtBdmk':
  206. return [
  207. {
  208. name: 'O₂',
  209. data: o2AveValues,
  210. yAxisIndex: 0,
  211. type: 'bar',
  212. },
  213. {
  214. name: 'N₂',
  215. data: n2AveValues,
  216. yAxisIndex: 0,
  217. type: 'bar',
  218. },
  219. {
  220. name: 'CO',
  221. data: coAveValues,
  222. yAxisIndex: 1,
  223. type: 'bar',
  224. },
  225. {
  226. name: 'CO₂',
  227. data: co2AveValues,
  228. yAxisIndex: 1,
  229. type: 'bar',
  230. },
  231. {
  232. name: 'CH₄',
  233. data: ch4AveValues,
  234. yAxisIndex: 1,
  235. type: 'bar',
  236. },
  237. {
  238. name: 'C2H6',
  239. data: c2h6AveValues,
  240. yAxisIndex: 1,
  241. type: 'bar',
  242. },
  243. {
  244. name: 'C3H8',
  245. data: c3h8AveValues,
  246. yAxisIndex: 1,
  247. type: 'bar',
  248. },
  249. {
  250. name: 'C₂H₄',
  251. data: c2h4AveValues,
  252. type: 'bar',
  253. yAxisIndex: 1,
  254. },
  255. {
  256. name: 'C₂H₂',
  257. data: c2h2AveValues,
  258. type: 'bar',
  259. yAxisIndex: 1,
  260. },
  261. ];
  262. default:
  263. return [
  264. {
  265. name: 'C₂H₂',
  266. data: c2h2AveValues,
  267. type: 'bar',
  268. yAxisIndex: 1,
  269. },
  270. {
  271. name: 'C₂H₄',
  272. data: c2h4AveValues,
  273. type: 'bar',
  274. yAxisIndex: 1,
  275. },
  276. {
  277. name: 'CH₄',
  278. data: ch4AveValues,
  279. yAxisIndex: 1,
  280. type: 'bar',
  281. },
  282. {
  283. name: 'CO₂',
  284. data: co2AveValues,
  285. yAxisIndex: 1,
  286. type: 'bar',
  287. },
  288. {
  289. name: 'CO',
  290. data: coAveValues,
  291. yAxisIndex: 1,
  292. type: 'bar',
  293. },
  294. {
  295. name: 'O₂',
  296. data: o2AveValues,
  297. yAxisIndex: 0,
  298. type: 'bar',
  299. },
  300. {
  301. name: 'N₂',
  302. data: n2AveValues,
  303. yAxisIndex: 0,
  304. type: 'bar',
  305. },
  306. {
  307. name: 'C2H6',
  308. data: c2h6AveValues,
  309. yAxisIndex: 1,
  310. type: 'bar',
  311. },
  312. ];
  313. }
  314. };
  315. const seriesConfig = getSeriesConfig(sysOrgCode);
  316. const option = {
  317. tooltip: {
  318. trigger: 'axis',
  319. backgroundColor: 'rgba(28, 72, 105, 0.5)', // 设置 tooltip 背景为透明
  320. textStyle: {
  321. color: '#ffffff', // 设置 tooltip 字体颜色为白色
  322. },
  323. axisPointer: {
  324. label: {
  325. show: true,
  326. backgroundColor: '#071c44',
  327. },
  328. },
  329. },
  330. legend: {
  331. top: '5%',
  332. textStyle: {
  333. color: '#ffffffff',
  334. },
  335. width: '80%', // 设置图例的宽度
  336. orient: 'horizontal', // 水平布局
  337. pageIconColor: '#ffffff', // 设置翻页图标颜色
  338. pageTextStyle: {
  339. color: '#ffffff', // 设置翻页文字颜色
  340. },
  341. },
  342. xAxis: {
  343. type: 'category',
  344. data: categories,
  345. splitLine: { show: true, lineStyle: { color: 'rgba(28, 72, 105, 0.5)' } },
  346. axisLabel: {
  347. interval: 0, // 显示所有标签
  348. color: '#ffffff', // 设置 x 轴字体颜色
  349. formatter: function (value: string) {
  350. return value.length > 12 ? value.slice(0, 12) + '...' : value; // 截断长标签
  351. },
  352. },
  353. },
  354. yAxis: [
  355. {
  356. type: 'value',
  357. name: 'O₂/N₂',
  358. max: 100,
  359. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  360. axisLabel: {
  361. color: '#ffffff',
  362. },
  363. },
  364. {
  365. type: 'value',
  366. name: '其他气体',
  367. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  368. axisLabel: {
  369. color: '#ffffff', // 设置 y 轴字体颜色
  370. },
  371. },
  372. ],
  373. dataZoom: [
  374. {
  375. type: 'slider', // 会创建一个滑块来选择要显示的区域
  376. start: 0, // 初始选中范围的起始百分比
  377. end: (5 / categories.length) * 100, // 初始选中范围的结束百分比,根据数据条数调整
  378. minSpan: (5 / categories.length) * 100, // 最小选中范围,根据数据条数调整
  379. maxSpan: (5 / categories.length) * 100, // 最大选中范围,根据数据条数调整
  380. show: true,
  381. height: 10, // 设置滑块高度
  382. bottom: 1, // 设置滑块距离容器底部的距离
  383. borderColor: 'transparent', // 设置边框颜色为透明
  384. backgroundColor: '#F6F7FB', // 设置背景颜色
  385. handleIcon: 'path://M512,512m-448,0a448,448,0,1,0,896,0a448,448,0,1,0,-896,0Z', // 设置手柄图标为圆形
  386. handleColor: '#C2D2FF', // 设置手柄颜色
  387. handleSize: 13, // 设置手柄大小
  388. handleStyle: {
  389. borderColor: '#C2D2FF', // 设置手柄边框颜色
  390. },
  391. fillerColor: '#C2D2FF', // 设置选中范围的填充颜色
  392. },
  393. ],
  394. grid: {
  395. top: '21%', // 设置 grid 距离顶部的距离,增加间隔
  396. left: '3%',
  397. right: '4%',
  398. bottom: '3%',
  399. containLabel: true,
  400. },
  401. series: seriesConfig,
  402. };
  403. myChart.setOption(option);
  404. }
  405. //获取所有文件列表
  406. async function getAllFile() {
  407. let res = await getAllFileList({ type: 'bundleSpy' });
  408. selectList.value = res.records.map((item: any) => ({
  409. id: item.id,
  410. fileName: item.fileName,
  411. }));
  412. if (selectList.value.length > 0) {
  413. formSearch.id = selectList.value[0].id;
  414. getSearch();
  415. }
  416. }
  417. // 处理文件点击事件
  418. function handleFileClick(item: any) {
  419. formSearch.id = item.id;
  420. formSearch.fileName = item.fileName;
  421. selectedFileId.value = item.id;
  422. getSearch();
  423. }
  424. //查询
  425. function getSearch() {
  426. // const selectedFile = selectList.value.find((item) => item.id === formSearch.id);
  427. const params = {
  428. id: formSearch.id,
  429. // fileName: selectedFile ? selectedFile.fileName : '',
  430. };
  431. getTableListById(params);
  432. }
  433. onMounted(() => {
  434. getTableList({ type: 'bundleSpy' });
  435. getAllFile().then(() => {
  436. if (selectList.value.length > 0) {
  437. formSearch.id = selectList.value[0].id;
  438. selectedFileId.value = selectList.value[0].id;
  439. getSearch();
  440. }
  441. });
  442. });
  443. </script>
  444. <style lang="less" scoped>
  445. @import '/@/design/theme.less';
  446. .content-container {
  447. display: flex;
  448. width: 100%;
  449. height: 100%;
  450. padding-top: 54px;
  451. }
  452. .file-list {
  453. width: 20%;
  454. padding: 10px;
  455. margin-right: 10px;
  456. margin-bottom: 50px;
  457. border: 1px solid #99e8ff66;
  458. background: #27546e1a;
  459. box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  460. -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  461. -webkit-box-shadow: 0px 0px 50px 1px rgb(149 235 255 / 5%) inset;
  462. }
  463. .file-list ul {
  464. list-style: none;
  465. padding: 0;
  466. }
  467. .file-list li {
  468. color: #fff;
  469. padding: 5px;
  470. cursor: pointer;
  471. }
  472. .file-list li:hover,
  473. .file-list li.selected {
  474. background: #1c4869;
  475. }
  476. .table-container {
  477. margin-top: 10px;
  478. width: 80%;
  479. box-sizing: border-box;
  480. }
  481. .dustMonitor {
  482. width: 100%;
  483. height: 100%;
  484. padding: 10px 10px 15px 10px;
  485. box-sizing: border-box;
  486. position: relative;
  487. }
  488. :deep(.zxm-table-thead > tr > th:last-child) {
  489. border-right: 1px solid #91e9fe !important;
  490. }
  491. :deep(.zxm-picker-input > input) {
  492. color: #fff;
  493. }
  494. :deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
  495. border: 1px solid var(--vent-form-item-border) !important;
  496. background-color: #ffffff00 !important;
  497. }
  498. :deep(.zxm-select-selection-item) {
  499. color: #fff !important;
  500. }
  501. .data-container {
  502. margin-top: 40px;
  503. display: flex;
  504. width: 100%;
  505. height: 100%;
  506. }
  507. .line-chart {
  508. flex: 3; /* 占据 3/4 的空间 */
  509. width: 100%;
  510. height: 400px;
  511. }
  512. .data-content {
  513. flex: 1; /* 占据 1/4 的空间 */
  514. height: 400px;
  515. display: flex;
  516. flex-direction: column; /* 垂直排列进度条 */
  517. // align-items: center; /* 水平居中 */
  518. margin: 10px;
  519. .title {
  520. font-size: 18px;
  521. font-weight: 600;
  522. color: #fff;
  523. margin-bottom: 20px;
  524. }
  525. .explain {
  526. color: var(--vent-table-action-link);
  527. margin-top: 18px;
  528. }
  529. }
  530. .progress {
  531. width: 100%;
  532. height: 20px;
  533. margin-top: 10px;
  534. }
  535. .progress-label {
  536. margin-top: 20px;
  537. text-align: left;
  538. margin-bottom: 5px;
  539. color: #fff;
  540. }
  541. ::deep .progress-text {
  542. color: #fff !important; /* 自定义百分比文字颜色 */
  543. }
  544. .blast-delta-container {
  545. margin: 50px;
  546. }
  547. .yellow-progress .ant-progress-bg {
  548. background-color: yellow !important;
  549. }
  550. :deep(.zxm-table-thead > tr > th:last-child) {
  551. border-right: 1px solid #91e9fe !important;
  552. }
  553. </style>