index.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672
  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, Yjlcolumns, Cctrkcolumns } 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. case 'sdmtjtyjlmk':
  86. return Yjlcolumns; // 榆家梁对应的列配置
  87. case 'sdmtjtcctrk':
  88. return Cctrkcolumns; // 寸草塔二矿对应的列配置
  89. default:
  90. return columns; // 默认情况下返回的列配置
  91. }
  92. });
  93. //获取色谱仪报表
  94. async function getTableList(params: any) {
  95. let res = await getbundleSpyInfoList({ type: 'bundleSpy', ...params });
  96. const content = res.content;
  97. let contentArr = JSON.parse(content);
  98. // const contentNewArr = computed(() => {
  99. // return contentArr.map((item) => {
  100. // let internalFireWarnLevel = '';
  101. // const co = item.co_ave;
  102. // const co2 = item.co2_ave;
  103. // const c2h4 = item.c2h4_ave;
  104. // const c2h2 = item.c2h2_ave;
  105. // const coRatio = co / co2;
  106. // if (co >= 0 && co <= 13.75) {
  107. // internalFireWarnLevel = '潜伏期阶段';
  108. // } else if (co > 13.75 && co < 67.2 && coRatio < 0.095) {
  109. // internalFireWarnLevel = '缓慢氧化升温阶段';
  110. // } else if ((co >= 67.2 && co < 1606.3) || (coRatio >= 0.095 && coRatio < 0.322) || c2h4 < 2) {
  111. // internalFireWarnLevel = '加速氧化阶段';
  112. // } else if (co >= 1606.3 || coRatio >= 0.322 || c2h4 >= 2 || c2h2 > 0) {
  113. // internalFireWarnLevel = '剧烈氧化阶段';
  114. // }
  115. // return { ...item, internalFireWarnLevel };
  116. // });
  117. // });
  118. total.value = contentArr.length;
  119. qfqCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '潜伏期阶段').length;
  120. latentCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '缓慢氧化升温阶段').length;
  121. selfHeatingCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '加速氧化升温阶段').length;
  122. combustionCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '剧烈氧化升温阶段').length;
  123. qfqPercent.value = (qfqCount.value / total.value) * 100;
  124. latentPercent.value = (latentCount.value / total.value) * 100;
  125. selfHeatingPercent.value = (selfHeatingCount.value / total.value) * 100;
  126. combustionPercent.value = (combustionCount.value / total.value) * 100;
  127. tableData.value = contentArr;
  128. updateChart(contentArr);
  129. }
  130. async function getTableListById(params: any) {
  131. let res = await getAllFileListById({ ...params });
  132. const content = res.content;
  133. let contentArr = JSON.parse(content);
  134. total.value = contentArr.length;
  135. qfqCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '潜伏期阶段').length;
  136. latentCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '缓慢氧化升温阶段').length;
  137. selfHeatingCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '加速氧化升温阶段').length;
  138. combustionCount.value = contentArr.filter((item: any) => item.internalFireWarnLevel === '剧烈氧化升温阶段').length;
  139. qfqPercent.value = (qfqCount.value / total.value) * 100;
  140. latentPercent.value = (latentCount.value / total.value) * 100;
  141. selfHeatingPercent.value = (selfHeatingCount.value / total.value) * 100;
  142. combustionPercent.value = (combustionCount.value / total.value) * 100;
  143. tableData.value = contentArr;
  144. updateChart(contentArr);
  145. }
  146. //跳转到爆炸三角形
  147. function toDetail(record: any) {
  148. posMonitor.value = record;
  149. console.log(posMonitor.value);
  150. modalVisible.value = true;
  151. }
  152. //折线图
  153. function updateChart(data: any) {
  154. const chartDom = document.getElementById('lineChart');
  155. const myChart = echarts.init(chartDom);
  156. const categories = data.map((item: any) => item.jcdd);
  157. const c2h2AveValues = data.map((item: any) => parseFloat(item.c2h2_ave));
  158. const c2h4AveValues = data.map((item: any) => parseFloat(item.c2h4_ave));
  159. const ch4AveValues = data.map((item: any) => parseFloat(item.ch4_ave));
  160. const co2AveValues = data.map((item: any) => parseFloat(item.co2_ave));
  161. const coAveValues = data.map((item: any) => parseFloat(item.co_ave));
  162. const o2AveValues = data.map((item: any) => parseFloat(item.o2_ave));
  163. const n2AveValues = data.map((item: any) => parseFloat(item.n2_ave));
  164. const c2h6AveValues = data.map((item: any) => parseFloat(item.c2h6_ave));
  165. const c3h8AveValues = data.map((item: any) => parseFloat(item.c3h8_ave));
  166. const ch4AveBqValues = data.map((item: any) => parseFloat(item.ch4_ave_bq));
  167. const o2AveBqValues = data.map((item: any) => parseFloat(item.o2_ave_bq));
  168. const getSeriesConfig = (sysOrgCode) => {
  169. switch (sysOrgCode) {
  170. case 'sdmtjtdltmkhjtj':
  171. return [
  172. {
  173. name: 'CH₄闭内',
  174. data: ch4AveValues,
  175. yAxisIndex: 1,
  176. type: 'bar',
  177. },
  178. {
  179. name: 'O₂闭内',
  180. data: ch4AveValues,
  181. yAxisIndex: 1,
  182. type: 'bar',
  183. },
  184. {
  185. name: 'CO₂闭内',
  186. data: co2AveValues,
  187. yAxisIndex: 1,
  188. type: 'bar',
  189. },
  190. {
  191. name: 'CO闭内',
  192. data: coAveValues,
  193. yAxisIndex: 1,
  194. type: 'bar',
  195. },
  196. {
  197. name: 'CH₄闭前',
  198. data: ch4AveBqValues,
  199. yAxisIndex: 1,
  200. type: 'bar',
  201. },
  202. {
  203. name: 'O₂闭前',
  204. data: o2AveBqValues,
  205. yAxisIndex: 1,
  206. type: 'bar',
  207. },
  208. ];
  209. case 'sdmtjtBdmk':
  210. return [
  211. {
  212. name: 'O₂',
  213. data: o2AveValues,
  214. yAxisIndex: 0,
  215. type: 'bar',
  216. },
  217. {
  218. name: 'N₂',
  219. data: n2AveValues,
  220. yAxisIndex: 0,
  221. type: 'bar',
  222. },
  223. {
  224. name: 'CO',
  225. data: coAveValues,
  226. yAxisIndex: 1,
  227. type: 'bar',
  228. },
  229. {
  230. name: 'CO₂',
  231. data: co2AveValues,
  232. yAxisIndex: 1,
  233. type: 'bar',
  234. },
  235. {
  236. name: 'CH₄',
  237. data: ch4AveValues,
  238. yAxisIndex: 1,
  239. type: 'bar',
  240. },
  241. {
  242. name: 'C2H6',
  243. data: c2h6AveValues,
  244. yAxisIndex: 1,
  245. type: 'bar',
  246. },
  247. {
  248. name: 'C3H8',
  249. data: c3h8AveValues,
  250. yAxisIndex: 1,
  251. type: 'bar',
  252. },
  253. {
  254. name: 'C₂H₄',
  255. data: c2h4AveValues,
  256. type: 'bar',
  257. yAxisIndex: 1,
  258. },
  259. {
  260. name: 'C₂H₂',
  261. data: c2h2AveValues,
  262. type: 'bar',
  263. yAxisIndex: 1,
  264. },
  265. ];
  266. case 'sdmtjtyjlmk':
  267. return [
  268. {
  269. name: 'O₂',
  270. data: o2AveValues,
  271. yAxisIndex: 0,
  272. type: 'bar',
  273. },
  274. {
  275. name: 'N₂',
  276. data: n2AveValues,
  277. yAxisIndex: 0,
  278. type: 'bar',
  279. },
  280. {
  281. name: 'CO',
  282. data: coAveValues,
  283. yAxisIndex: 1,
  284. type: 'bar',
  285. },
  286. {
  287. name: 'CO₂',
  288. data: co2AveValues,
  289. yAxisIndex: 1,
  290. type: 'bar',
  291. },
  292. {
  293. name: 'CH₄',
  294. data: ch4AveValues,
  295. yAxisIndex: 1,
  296. type: 'bar',
  297. },
  298. {
  299. name: 'C2H6',
  300. data: c2h6AveValues,
  301. yAxisIndex: 1,
  302. type: 'bar',
  303. },
  304. {
  305. name: 'C₂H₄',
  306. data: c2h4AveValues,
  307. type: 'bar',
  308. yAxisIndex: 1,
  309. },
  310. {
  311. name: 'C₂H₂',
  312. data: c2h2AveValues,
  313. type: 'bar',
  314. yAxisIndex: 1,
  315. },
  316. ];
  317. case 'sdmtjtcctrk':
  318. return [
  319. {
  320. name: 'CH₄闭内',
  321. data: ch4AveValues,
  322. yAxisIndex: 1,
  323. type: 'bar',
  324. },
  325. {
  326. name: 'O₂闭内',
  327. data: ch4AveValues,
  328. yAxisIndex: 1,
  329. type: 'bar',
  330. },
  331. {
  332. name: 'CO₂闭内',
  333. data: co2AveValues,
  334. yAxisIndex: 1,
  335. type: 'bar',
  336. },
  337. {
  338. name: 'CO闭内',
  339. data: coAveValues,
  340. yAxisIndex: 1,
  341. type: 'bar',
  342. },
  343. {
  344. name: 'CH₄闭前',
  345. data: ch4AveBqValues,
  346. yAxisIndex: 1,
  347. type: 'bar',
  348. },
  349. {
  350. name: 'O₂闭前',
  351. data: o2AveBqValues,
  352. yAxisIndex: 1,
  353. type: 'bar',
  354. },
  355. ];
  356. default:
  357. return [
  358. {
  359. name: 'C₂H₂',
  360. data: c2h2AveValues,
  361. type: 'bar',
  362. yAxisIndex: 1,
  363. },
  364. {
  365. name: 'C₂H₄',
  366. data: c2h4AveValues,
  367. type: 'bar',
  368. yAxisIndex: 1,
  369. },
  370. {
  371. name: 'CH₄',
  372. data: ch4AveValues,
  373. yAxisIndex: 1,
  374. type: 'bar',
  375. },
  376. {
  377. name: 'CO₂',
  378. data: co2AveValues,
  379. yAxisIndex: 1,
  380. type: 'bar',
  381. },
  382. {
  383. name: 'CO',
  384. data: coAveValues,
  385. yAxisIndex: 1,
  386. type: 'bar',
  387. },
  388. {
  389. name: 'O₂',
  390. data: o2AveValues,
  391. yAxisIndex: 0,
  392. type: 'bar',
  393. },
  394. {
  395. name: 'N₂',
  396. data: n2AveValues,
  397. yAxisIndex: 0,
  398. type: 'bar',
  399. },
  400. {
  401. name: 'C2H6',
  402. data: c2h6AveValues,
  403. yAxisIndex: 1,
  404. type: 'bar',
  405. },
  406. ];
  407. }
  408. };
  409. const seriesConfig = getSeriesConfig(sysOrgCode);
  410. const option = {
  411. tooltip: {
  412. trigger: 'axis',
  413. backgroundColor: 'rgba(28, 72, 105, 0.5)', // 设置 tooltip 背景为透明
  414. textStyle: {
  415. color: '#ffffff', // 设置 tooltip 字体颜色为白色
  416. },
  417. axisPointer: {
  418. label: {
  419. show: true,
  420. backgroundColor: '#071c44',
  421. },
  422. },
  423. },
  424. legend: {
  425. top: '5%',
  426. textStyle: {
  427. color: '#ffffffff',
  428. },
  429. width: '80%', // 设置图例的宽度
  430. orient: 'horizontal', // 水平布局
  431. pageIconColor: '#ffffff', // 设置翻页图标颜色
  432. pageTextStyle: {
  433. color: '#ffffff', // 设置翻页文字颜色
  434. },
  435. },
  436. xAxis: {
  437. type: 'category',
  438. data: categories,
  439. splitLine: { show: true, lineStyle: { color: 'rgba(28, 72, 105, 0.5)' } },
  440. axisLabel: {
  441. interval: 0, // 显示所有标签
  442. color: '#ffffff', // 设置 x 轴字体颜色
  443. formatter: function (value: string) {
  444. return value.length > 12 ? value.slice(0, 12) + '...' : value; // 截断长标签
  445. },
  446. },
  447. },
  448. yAxis: [
  449. {
  450. type: 'value',
  451. name: 'O₂/N₂',
  452. max: 100,
  453. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  454. axisLabel: {
  455. color: '#ffffff',
  456. },
  457. },
  458. {
  459. type: 'value',
  460. name: '其他气体',
  461. splitLine: { show: true, lineStyle: { color: 'rgba(21,80,126,.5)' } },
  462. axisLabel: {
  463. color: '#ffffff', // 设置 y 轴字体颜色
  464. },
  465. },
  466. ],
  467. dataZoom: [
  468. {
  469. type: 'slider', // 会创建一个滑块来选择要显示的区域
  470. start: 0, // 初始选中范围的起始百分比
  471. end: (5 / categories.length) * 100, // 初始选中范围的结束百分比,根据数据条数调整
  472. minSpan: (5 / categories.length) * 100, // 最小选中范围,根据数据条数调整
  473. maxSpan: (5 / categories.length) * 100, // 最大选中范围,根据数据条数调整
  474. show: true,
  475. height: 10, // 设置滑块高度
  476. bottom: 1, // 设置滑块距离容器底部的距离
  477. borderColor: 'transparent', // 设置边框颜色为透明
  478. backgroundColor: '#F6F7FB', // 设置背景颜色
  479. handleIcon: 'path://M512,512m-448,0a448,448,0,1,0,896,0a448,448,0,1,0,-896,0Z', // 设置手柄图标为圆形
  480. handleColor: '#C2D2FF', // 设置手柄颜色
  481. handleSize: 13, // 设置手柄大小
  482. handleStyle: {
  483. borderColor: '#C2D2FF', // 设置手柄边框颜色
  484. },
  485. fillerColor: '#C2D2FF', // 设置选中范围的填充颜色
  486. },
  487. ],
  488. grid: {
  489. top: '21%', // 设置 grid 距离顶部的距离,增加间隔
  490. left: '3%',
  491. right: '4%',
  492. bottom: '3%',
  493. containLabel: true,
  494. },
  495. series: seriesConfig,
  496. };
  497. myChart.setOption(option);
  498. }
  499. //获取所有文件列表
  500. async function getAllFile() {
  501. let res = await getAllFileList({ type: 'bundleSpy' });
  502. selectList.value = res.records.map((item: any) => ({
  503. id: item.id,
  504. fileName: item.fileName,
  505. }));
  506. if (selectList.value.length > 0) {
  507. formSearch.id = selectList.value[0].id;
  508. getSearch();
  509. }
  510. }
  511. // 处理文件点击事件
  512. function handleFileClick(item: any) {
  513. formSearch.id = item.id;
  514. formSearch.fileName = item.fileName;
  515. selectedFileId.value = item.id;
  516. getSearch();
  517. }
  518. //查询
  519. function getSearch() {
  520. // const selectedFile = selectList.value.find((item) => item.id === formSearch.id);
  521. const params = {
  522. id: formSearch.id,
  523. // fileName: selectedFile ? selectedFile.fileName : '',
  524. };
  525. getTableListById(params);
  526. }
  527. onMounted(() => {
  528. getTableList({ type: 'bundleSpy' });
  529. getAllFile().then(() => {
  530. if (selectList.value.length > 0) {
  531. formSearch.id = selectList.value[0].id;
  532. selectedFileId.value = selectList.value[0].id;
  533. getSearch();
  534. }
  535. });
  536. });
  537. </script>
  538. <style lang="less" scoped>
  539. @import '/@/design/theme.less';
  540. .content-container {
  541. display: flex;
  542. width: 100%;
  543. height: 100%;
  544. padding-top: 54px;
  545. }
  546. .file-list {
  547. width: 20%;
  548. padding: 10px;
  549. margin-right: 10px;
  550. margin-bottom: 50px;
  551. border: 1px solid #99e8ff66;
  552. background: #27546e1a;
  553. box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  554. -moz-box-shadow: 0px 0px 20px 7px rgba(145, 233, 254, 0.7) inset;
  555. -webkit-box-shadow: 0px 0px 50px 1px rgb(149 235 255 / 5%) inset;
  556. }
  557. .file-list ul {
  558. list-style: none;
  559. padding: 0;
  560. }
  561. .file-list li {
  562. color: #fff;
  563. padding: 5px;
  564. cursor: pointer;
  565. }
  566. .file-list li:hover,
  567. .file-list li.selected {
  568. background: #1c4869;
  569. }
  570. .table-container {
  571. margin-top: 10px;
  572. width: 80%;
  573. box-sizing: border-box;
  574. }
  575. .dustMonitor {
  576. width: 100%;
  577. height: 100%;
  578. padding: 10px 10px 15px 10px;
  579. box-sizing: border-box;
  580. position: relative;
  581. }
  582. :deep(.zxm-table-thead > tr > th:last-child) {
  583. border-right: 1px solid #91e9fe !important;
  584. }
  585. :deep(.zxm-picker-input > input) {
  586. color: #fff;
  587. }
  588. :deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
  589. border: 1px solid var(--vent-form-item-border) !important;
  590. background-color: #ffffff00 !important;
  591. }
  592. :deep(.zxm-select-selection-item) {
  593. color: #fff !important;
  594. }
  595. .data-container {
  596. margin-top: 40px;
  597. display: flex;
  598. width: 100%;
  599. height: 100%;
  600. }
  601. .line-chart {
  602. flex: 3; /* 占据 3/4 的空间 */
  603. width: 100%;
  604. height: 400px;
  605. }
  606. .data-content {
  607. flex: 1; /* 占据 1/4 的空间 */
  608. height: 400px;
  609. display: flex;
  610. flex-direction: column; /* 垂直排列进度条 */
  611. // align-items: center; /* 水平居中 */
  612. margin: 10px;
  613. .title {
  614. font-size: 18px;
  615. font-weight: 600;
  616. color: #fff;
  617. margin-bottom: 20px;
  618. }
  619. .explain {
  620. color: var(--vent-table-action-link);
  621. margin-top: 18px;
  622. }
  623. }
  624. .progress {
  625. width: 100%;
  626. height: 20px;
  627. margin-top: 10px;
  628. }
  629. .progress-label {
  630. margin-top: 20px;
  631. text-align: left;
  632. margin-bottom: 5px;
  633. color: #fff;
  634. }
  635. ::deep .progress-text {
  636. color: #fff !important; /* 自定义百分比文字颜色 */
  637. }
  638. .blast-delta-container {
  639. margin: 50px;
  640. }
  641. .yellow-progress .ant-progress-bg {
  642. background-color: yellow !important;
  643. }
  644. :deep(.zxm-table-thead > tr > th:last-child) {
  645. border-right: 1px solid #91e9fe !important;
  646. }
  647. </style>