index.vue 20 KB

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