damper.vue 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  1. <template>
  2. <div class="vent-home-header">
  3. <Decoration5 class="header-icon" :dur="2" :color="['#21437F', '#2CF7FE']" style="width:500px;height:40px;" />
  4. <div class="header-text">实时网络解算</div>
  5. </div>
  6. <div class="zl-box">
  7. <div class="zl-container-box">
  8. <div class="top-box">
  9. <div class="left-box lr-box">
  10. <div class="analysis-box">
  11. <div class="item-top-title">通风网络分析</div>
  12. <BorderBox1 backgroundColor="#00bfff05">
  13. <div class="pie-group">
  14. <div class="item-pie">
  15. <div class="pie">
  16. <div class="qiu qiu1">
  17. <p>{{ totalEnterNum }}</p>
  18. </div>
  19. </div>
  20. <div class="pie-data">
  21. <span class="data-text">总进风量</span>
  22. </div>
  23. </div>
  24. <div class="item-pie">
  25. <div class="pie">
  26. <div class="qiu qiu2">
  27. <p>{{ totalToNum }}</p>
  28. </div>
  29. </div>
  30. <div class="pie-data">
  31. <span class="data-text">总回风量</span>
  32. </div>
  33. </div>
  34. </div>
  35. <div class="detail-data-group">
  36. <div class="container-item" v-for="(data, index) in analysisDetailDataList" :key="index">
  37. <div class="item-icon">
  38. <SvgIcon class="icon-style" size="18" :name="data.icon" />
  39. </div>
  40. <div class="item-name">{{ data.name }}</div>
  41. <div v-if="data.code !== 'level' && data.code !== 'resistance'" class="item-value">{{ data.value }}</div>
  42. <div v-if="data.code == 'level'" class="item-value">
  43. <span class="signal-round signal-round-run"></span>
  44. </div>
  45. <div v-if="data.code == 'resistance'" class="item-value">{{ totalPa }}</div>
  46. </div>
  47. </div>
  48. <div class="feature-group">
  49. <div class="feature-item">
  50. <div class="pie">
  51. <Progress
  52. type="circle"
  53. :width="50"
  54. :stroke-color="{
  55. '0%': '#FC9C1D',
  56. '100%': '#1FF8FB',
  57. }"
  58. :percent="Number(rate1)"
  59. ></Progress>
  60. </div>
  61. <div class="data">可靠度</div>
  62. </div>
  63. <div class="feature-item">
  64. <div class="pie">
  65. <Progress
  66. type="circle"
  67. :width="50"
  68. :stroke-color="{
  69. '0%': '#A02EFF',
  70. '100%': '#1FF8FB',
  71. }"
  72. :percent="Number(rate2)"
  73. ></Progress>
  74. </div>
  75. <div class="data">风阻合理度</div>
  76. </div>
  77. <div class="feature-item">
  78. <div class="pie">
  79. <Progress
  80. type="circle"
  81. :width="50"
  82. :stroke-color="{
  83. '0%': '#108ee9',
  84. '100%': '#1FF8FB',
  85. }"
  86. :percent="Number(rate3)"
  87. ></Progress>
  88. </div>
  89. <div class="data">有效风量率</div>
  90. </div>
  91. </div>
  92. </BorderBox1>
  93. </div>
  94. </div>
  95. <div class="right-box lr-box">
  96. <div class="sensor-box">
  97. <div class="item-top-title">传感器实时数据</div>
  98. <BorderBox1 class="table-box">
  99. <div class="table-container">
  100. <a-table :columns="sensorColumns" :data-source="sensorDataList" :pagination="false" size="small" />
  101. </div>
  102. </BorderBox1>
  103. </div>
  104. <div class="warning-box">
  105. <div class="item-top-title">预警报警信息</div>
  106. <BorderBox1 class="table-box">
  107. <div class="table-container">
  108. <a-table :columns="warningColumns" :data-source="warningDataList" :pagination="false" size="small" >
  109. <template #bodyCell="{ column, record }">
  110. <div v-if="column.dataIndex == 'level'">
  111. <span class="signal-round" :class="{ 'signal-round-red': record['level'] == 1, 'signal-round-orange': record['level'] == 2, 'signal-round-yellow': record['level'] == 3 }"></span>
  112. </div>
  113. </template>
  114. </a-table>
  115. </div>
  116. </BorderBox1>
  117. </div>
  118. </div>
  119. </div>
  120. <div class="bottom-box">
  121. <div class="bottom-left bottom-lr-box">
  122. <BorderBox11 title="实时网络解算" :color="['#00FFFF']">
  123. <div class="network-top">
  124. <div class="network-top-left">
  125. <div>
  126. 准确率:
  127. <span class="accuracy-rate">95%</span>
  128. </div>
  129. <div>
  130. 迭代误差:
  131. <span class="error-rate">0.0941%</span>
  132. </div>
  133. </div>
  134. <div class="network-top-right">
  135. 本次解算时间:
  136. <span class="time">{{ currentTime }}</span>
  137. </div>
  138. </div>
  139. <div class="table-container">
  140. <a-table :columns="networkColumns" :data-source="networkDataList" :pagination="false" size="small" />
  141. </div>
  142. </BorderBox11>
  143. </div>
  144. <div class="bottom-right bottom-lr-box">
  145. <BorderBox11 title="最大阻力路线">
  146. <div class="zl-top">
  147. <div>
  148. <span class="btn active">1号回风斜井</span>
  149. <span class="btn">2号回风斜井</span>
  150. </div>
  151. <div>
  152. 路线阻力
  153. <span class="data">{{ totalPa }}</span>
  154. Pa
  155. </div>
  156. </div>
  157. <div class="zl-container">
  158. <div class="zl-path-item position1">
  159. <div class="title">副平硐</div>
  160. </div>
  161. <div class="zl-path-item position2">
  162. <div class="title">5煤组盘区辅运巷</div>
  163. </div>
  164. <div class="zl-path-item position3">
  165. <div class="title">1521辅运顺槽</div>
  166. </div>
  167. <div class="zl-path-item position4">
  168. <div class="title">15212综采工作面</div>
  169. </div>
  170. <div class="zl-path-item position5">
  171. <div class="title">15211辅运顺槽</div>
  172. </div>
  173. <div class="zl-path-item position6">
  174. <div class="title">15212胶运顺槽</div>
  175. </div>
  176. <div class="zl-path-item position7">
  177. <div class="title">15212回风顺槽回风联巷</div>
  178. </div>
  179. <div class="zl-path-item position8">
  180. <div class="title">5煤组盘曲回风大巷</div>
  181. </div>
  182. <div class="zl-path-item position9">
  183. <div class="title">回风斜井联络巷</div>
  184. </div>
  185. <div class="zl-path-item position10">
  186. <div class="title">1盘曲回风斜井</div>
  187. </div>
  188. </div>
  189. </BorderBox11>
  190. </div>
  191. </div>
  192. </div>
  193. </div>
  194. </template>
  195. <script setup lang="ts">
  196. import { ref, onMounted, onUnmounted } from 'vue';
  197. import { Icon as SvgIcon } from '/@/components/Icon';
  198. import { Progress } from 'ant-design-vue';
  199. import { BorderBox11, BorderBox1, Decoration5 } from '@kjgl77/datav-vue3';
  200. import { sensorColumns, sensorData, networkColumns, networkData, warningColumns, warningData } from './network.data'
  201. import dayjs from 'dayjs'
  202. // import { registerApps } from '/@/qiankun';
  203. // import { useGlobSetting } from '/@/hooks/setting';
  204. // const globSetting = useGlobSetting();
  205. // const openQianKun = globSetting.openQianKun;
  206. let count = 0;
  207. const sensorDataList = ref<any[]>([])
  208. const networkDataList = ref<any[]>([])
  209. const warningDataList = ref<any[]>([])
  210. const currentTime = ref(dayjs(new Date('2022-10-11 15:03:11').getTime() + count).format('YYYY-MM-DD HH:mm:ss'))
  211. const totalEnterNum = ref(23855+'')
  212. const totalToNum = ref(244436+'')
  213. const totalPa = ref(1640+'')
  214. const rate1 = ref(95+'')
  215. const rate2 = ref(95+'')
  216. const rate3 = ref(95+'')
  217. const analysisDetailDataList = ref([
  218. {
  219. code:'',
  220. name: '通风巷道规模(m)',
  221. value: '21000',
  222. icon: 'path-icon1'
  223. },
  224. {
  225. code: 'level',
  226. name: '通风难易程度',
  227. value: '21000',
  228. icon: 'path-icon2'
  229. },
  230. {
  231. code: 'resistance',
  232. name: '总阻力',
  233. value: totalPa.value,
  234. icon: 'path-icon3'
  235. },
  236. {
  237. code: '',
  238. name: '等积孔(㎡)',
  239. value: '11.27',
  240. icon: 'path-icon4'
  241. },
  242. ])
  243. let timer: null | NodeJS.Timeout = null;
  244. function getMonitorData() {
  245. if (Object.prototype.toString.call(timer) === '[object Null]') {
  246. timer = setTimeout(async () => {
  247. sensorDataList.value = sensorData()
  248. networkDataList.value = networkData()
  249. warningDataList.value = warningData()
  250. currentTime.value = dayjs(new Date('2022-10-11 15:03:11').getTime() + (++count*5000)).format('YYYY-MM-DD HH:mm:ss')
  251. totalEnterNum.value = Number(Math.random() * 200 - 100 + 23855).toFixed(0)
  252. totalToNum.value = Number(Math.random() * 200 - 100 + 244436).toFixed(0)
  253. totalPa.value = Number(Math.random() * 50 - 25 + 1640).toFixed(0)
  254. rate1.value = Number(Math.random() * 4 - 2 + 95).toFixed(0)
  255. rate2.value = Number(Math.random() * 4 - 2 + 95).toFixed(0)
  256. rate3.value = Number(Math.random() * 4 - 2 + 95).toFixed(0)
  257. sensorDataList.value = sensorData()
  258. networkDataList.value = networkData()
  259. warningDataList.value = warningData()
  260. if (timer) {
  261. timer = null;
  262. }
  263. getMonitorData();
  264. }, 5000)
  265. }
  266. }
  267. onMounted(() => {
  268. getMonitorData()
  269. // if (document.body.getAttribute('class')?.includes('style-styleTwo')) document.body.removeAttribute('class', 'style-styleTwo');
  270. });
  271. onUnmounted(() => {
  272. if (timer) {
  273. clearTimeout(timer);
  274. timer = undefined;
  275. }
  276. });
  277. </script>
  278. <style scoped lang="less">
  279. @ventSpace: zxm;
  280. .vent-home-header {
  281. width: 100%;
  282. height: 100px;
  283. position: fixed;
  284. top: 0;
  285. background: url('/@/assets/images/vent/new-home/header-bg.png') no-repeat;
  286. background-size: contain;
  287. display: flex;
  288. justify-content: center;
  289. z-index: 99;
  290. .header-icon{
  291. margin-top: 45px;
  292. }
  293. .header-text{
  294. position: fixed;
  295. top: 18px;
  296. color: #fff;
  297. font-size: 26px;
  298. }
  299. }
  300. .zl-box{
  301. width: 100%;
  302. height: calc(100%);
  303. top: 0px;
  304. position: relative;
  305. overflow: hidden;
  306. color: #fff;
  307. // background: url('/@/assets/images/vent/path/bg.png') no-repeat;
  308. background-position: center;
  309. background-size: cover;
  310. .modal-box{
  311. position: relative;
  312. width: 100%;
  313. height: 100%;
  314. top: 0;
  315. left: 0;
  316. }
  317. }
  318. .zl-container-box{
  319. width: 100%;
  320. height: 100%;
  321. top: 10px;
  322. position: absolute;
  323. z-index: 99;
  324. pointer-events: none;
  325. .top-box{
  326. display: flex;
  327. justify-content: space-between;
  328. height: calc(70% - 20px);
  329. .lr-box{
  330. width: 374px;
  331. margin-top: 10px;
  332. }
  333. .left-box{
  334. .analysis-box{
  335. position: relative;
  336. .pie-group{
  337. display: flex;
  338. flex-direction: row;
  339. padding-top: 30px;
  340. .item-pie{
  341. flex: 1;
  342. padding: 5px;
  343. display: flex;
  344. flex-direction: column;
  345. justify-content: center;
  346. align-items: center;
  347. .pie{
  348. width: 140px;
  349. height: 80px;
  350. background: url('/@/assets/images/vent/path/di.png') no-repeat;
  351. background-size: contain;
  352. display: flex;
  353. justify-content: center;
  354. .qiu1{
  355. background: url('/@/assets/images/vent/path/cicle01.png') no-repeat center;
  356. }
  357. .qiu2{
  358. background: url('/@/assets/images/vent/path/cicle04.png') no-repeat center;
  359. }
  360. .qiu{
  361. position: relative;
  362. width: 60px;
  363. height: 60px;
  364. background-size: 100%;
  365. display: flex;
  366. justify-content: center;
  367. padding-top: 18px;
  368. &::before{
  369. content: '';
  370. display: block;
  371. width: 60px;
  372. height: 60px;
  373. position: absolute;
  374. left: 50%;
  375. top: 50%;
  376. transform: translate(-50%, -50%);
  377. border-radius: 50%;
  378. border: 3px solid rgba(255, 255, 255, 0.5);
  379. animation: scale 2s linear infinite;
  380. }
  381. }
  382. }
  383. .pie-data{
  384. width: 140px;
  385. height: 20px;
  386. display: flex;
  387. justify-content: center;
  388. position: relative;
  389. background: url('/@/assets/images/vent/path/pie-line.png');
  390. .data-text{
  391. display: block;
  392. position: absolute;
  393. top: -8px;
  394. }
  395. }
  396. }
  397. }
  398. .detail-data-group{
  399. width: 100%;;
  400. display: flex;
  401. flex-direction: column;
  402. align-items: center;
  403. margin-top: 15px;
  404. .container-item {
  405. width: 307px;
  406. height: 63px;
  407. display: flex;
  408. position: relative;
  409. background: url('/@/assets/images/vent/plane-bottom.png') no-repeat;
  410. background-size: auto;
  411. background-position: bottom;
  412. padding: 10px 30px;
  413. &::before {
  414. content: '';
  415. display: block;
  416. width: 100%;
  417. height: 5px;
  418. position: absolute;
  419. top: 62px;
  420. left: 0;
  421. background-color: #73f4ff66;
  422. backdrop-filter: blur(5px);
  423. }
  424. .item-icon {
  425. width: 60px;
  426. height: 45px;
  427. background: url('/@/assets/images/vent/plane-icon-bg.png') no-repeat;
  428. background-size: cover;
  429. .icon-style {
  430. margin: 10px 0 0 18px;
  431. }
  432. }
  433. .item-name {
  434. width: 180px;
  435. line-height: 60px;
  436. margin-left: 5px;
  437. text-align: left;
  438. }
  439. .item-value {
  440. position: relative;
  441. height: 26px;
  442. line-height: 24px;
  443. margin: 15px 0;
  444. text-align: center;
  445. width: 80px;
  446. border: 1px solid #00f5fe;
  447. border-radius: 13px;
  448. background: linear-gradient(to right, #00f5fe44, #0090ff44);
  449. &::before {
  450. width: 6px;
  451. height: 6px;
  452. content: '';
  453. position: absolute;
  454. left: -3px;
  455. top: 8px;
  456. background: #ffa500;
  457. border-radius: 3px;
  458. }
  459. }
  460. }
  461. }
  462. .feature-group{
  463. display: flex;
  464. flex-direction: row;
  465. padding: 20px;
  466. margin-top: 15px;
  467. .feature-item{
  468. width: 108px;
  469. height: 120px;
  470. background: url('/@/assets/images/vent/path/path-feature-bg.png');
  471. display: flex;
  472. flex-direction: column;
  473. // justify-content: center;
  474. .pie{
  475. display: flex;
  476. justify-content: center;
  477. }
  478. .data{
  479. margin-top: 15px;
  480. font-size: 12px;
  481. scale: 0.9;
  482. text-align: center;
  483. }
  484. }
  485. }
  486. }
  487. }
  488. .right-box{
  489. display: flex;
  490. flex-direction: column;
  491. .sensor-box, .warning-box{
  492. position: relative;
  493. // min-height: 220px;
  494. // max-height: 250px;
  495. .table-box{
  496. height: 280px;
  497. position: relative;
  498. .table-container{
  499. margin: 25px 20px 20px;
  500. height: 250px;
  501. position: absolute;
  502. }
  503. }
  504. }
  505. .sensor-box{
  506. .item-top-title{
  507. &::after{
  508. left: 110px;
  509. }
  510. &::before{
  511. left: 265px;
  512. }
  513. }
  514. }
  515. .warning-box{
  516. margin-top: 10px;
  517. }
  518. }
  519. }
  520. .bottom-box{
  521. width: 100%;
  522. height: calc(30% - 20px);
  523. display: flex;
  524. justify-content: space-between;
  525. margin-top: 0px;
  526. position: relative;
  527. top: -20px;
  528. .bottom-lr-box{
  529. flex: 1;
  530. display: flex;
  531. justify-content: center;
  532. }
  533. .bottom-left{
  534. margin-right: 10px;
  535. .network-top{
  536. display: flex;
  537. flex-direction: row;
  538. justify-content: space-between;
  539. position: relative;
  540. top: 55px;
  541. padding: 0 30px;
  542. .network-top-left{
  543. display: flex;
  544. div{
  545. margin-right: 20px;
  546. }
  547. span{
  548. font-family: 'douyuFont';
  549. font-size: 15px;
  550. }
  551. .accuracy-rate{
  552. color: #FFA500;
  553. }
  554. .error-rate{
  555. color: #00f5fe;
  556. }
  557. }
  558. .time{
  559. color: #949494;
  560. }
  561. }
  562. .table-container{
  563. height: 150px;
  564. margin-top: 55px;
  565. margin-left: 15px;
  566. margin-right: 10px;
  567. }
  568. }
  569. .bottom-right{
  570. margin-left: 10px;
  571. .zl-top{
  572. width: calc(100% - 30px);
  573. padding: 0 20px;
  574. display: flex;
  575. flex-direction: row;
  576. justify-content: space-between;
  577. position: relative;
  578. top: 35px;
  579. z-index: 99;
  580. margin: 10px;
  581. border-bottom: 1px solid #00f5fe88;
  582. .btn{
  583. padding: 3px 10px;
  584. border-top: 1px solid #c6c6c6;
  585. background-image: linear-gradient(#c2c2c2aa, #b3b3b388 20%, #5a5a5a88);
  586. cursor: pointer;
  587. margin-right: 5px;
  588. &:hover, &:active{
  589. border-top: 1px solid #00f5fe;
  590. background-image: linear-gradient(#00f5feaa, #1adce288 20%, #00848988);
  591. }
  592. }
  593. .active{
  594. border-top: 1px solid #00f5fe;
  595. background-image: linear-gradient(#00f5feaa, #1adce288 20%, #00848988);
  596. }
  597. .data{
  598. font-family: 'douyuFont';
  599. color: #FFA500;
  600. font-size: 15px;
  601. }
  602. }
  603. .zl-container{
  604. width: 100%;
  605. height: 100%;
  606. margin: 0 15px;
  607. background: url('/@/assets/images/vent/path/zl-bg1.png') no-repeat;
  608. background-size: 920px 190px;
  609. position: relative;
  610. &::after{
  611. content: '';
  612. display: block;
  613. position: absolute;
  614. width: 100%;
  615. height: 100%;
  616. top: 85px;
  617. background: url('/@/assets/images/vent/path/zl-bg2.png') no-repeat;
  618. background-size: 920px 100px;
  619. }
  620. }
  621. .zl-path-item{
  622. height: 67px;
  623. background: url('/@/assets/images/vent/path/zl-path-item-bg.png') no-repeat;
  624. background-size: auto;
  625. background-position:center bottom;
  626. position: absolute;
  627. scale: 0.9;
  628. .title{
  629. position: relative;
  630. top: -20px;
  631. text-align: center;
  632. font-size: 12px;
  633. background: #00f5fe33;
  634. padding: 3px 5px;
  635. backdrop-filter: blur(5px);
  636. }
  637. }
  638. .position10{
  639. top: 130px;
  640. left: 0px;
  641. }
  642. .position9{
  643. top: 52px;
  644. left: 100px;
  645. }
  646. .position8{
  647. top: 132px;
  648. left: 220px;
  649. }
  650. .position7{
  651. top: 128px;
  652. left: 420px;
  653. }
  654. .position6{
  655. top: 60px;
  656. left: 320px;
  657. }
  658. .position5{
  659. top: 120px;
  660. left: 580px;
  661. }
  662. .position4{
  663. top: 123px;
  664. left: 690px;
  665. }
  666. .position3{
  667. top: 103px;
  668. left: 830px;
  669. }
  670. .position2{
  671. top: 90px;
  672. left: 740px;
  673. }
  674. .position1{
  675. top: 80px;
  676. left: 535px;
  677. }
  678. }
  679. }
  680. }
  681. .item-top-title{
  682. width: 374px;
  683. height: 32px;
  684. text-align: center;
  685. line-height: 34px;
  686. font-size: 15px;
  687. font-weight: 600;
  688. color: #fafafa;
  689. position: absolute;
  690. padding-top: 0px;
  691. top: -9px;
  692. &::before{
  693. content: '';
  694. display: block;
  695. width: 40px;
  696. height: 1px;
  697. position: absolute;
  698. left: 255px;
  699. top:50%;
  700. transform:translateY(-50%);
  701. -webkit-transform:translate(-50%,-50%);
  702. background-color: #00d4fe88;
  703. }
  704. &::after{
  705. content: '';
  706. display: block;
  707. width: 40px;
  708. height: 1px;
  709. position: absolute;
  710. left: 120px;
  711. top:50%;
  712. transform:translateY(-50%);
  713. -webkit-transform:translate(-50%,-50%);
  714. background-color: #00d4fe88;
  715. }
  716. }
  717. .signal-round{
  718. display: inline-block;
  719. width: 4px;
  720. height: 4px;
  721. border-radius: 50%;
  722. position: relative;
  723. top: -3px;
  724. &::after {
  725. display: block;
  726. content: '';
  727. position: absolute;
  728. width: 8px;
  729. height: 8px;
  730. top: -2px;
  731. left: -2px;
  732. border-radius: 50%;
  733. background-color: #daffc044;
  734. box-shadow: 0 0 1px 1px #c6ff7722;
  735. }
  736. }
  737. .signal-round-run {
  738. background-color: #67fc00;
  739. &::after {
  740. background-color: #daffc044;
  741. box-shadow: 0 0 1px 1px #c6ff7722;
  742. }
  743. }
  744. .signal-round-red {
  745. background-color: #FF3823;
  746. &::after {
  747. background-color: #FF382344;
  748. box-shadow: 0 0 1px 1px #FF382333;
  749. }
  750. }
  751. .signal-round-orange {
  752. background-color: #FF9B17;
  753. &::after {
  754. background-color: #FF9B1744;
  755. box-shadow: 0 0 1px 1px #FF9B1733;
  756. }
  757. }
  758. .signal-round-yellow {
  759. background-color: #FFFF00;
  760. &::after {
  761. background-color: #FFFF0044;
  762. box-shadow: 0 0 1px 1px #FFFF0033;
  763. }
  764. }
  765. .table-container{
  766. overflow-y: auto;
  767. overflow-x: hidden;
  768. pointer-events: auto;
  769. &::-webkit-scrollbar {
  770. width: 4px;
  771. height: 8px;
  772. background-color: #f5f5f500;
  773. }
  774. &::-webkit-scrollbar-track {
  775. background-color: #ffffff33;
  776. border-radius: 10px;
  777. }
  778. &::-webkit-scrollbar-thumb {
  779. background-color: #cccccc44;
  780. border-radius: 10px;
  781. }
  782. }
  783. @keyframes scale {
  784. 0% {
  785. transform: translate(-50%, -50%) scale(0.9);
  786. opacity: 1;
  787. }
  788. 100% {
  789. transform: translate(-50%, -50%) scale(1.5);
  790. opacity: 0;
  791. }
  792. }
  793. :deep(.@{ventSpace}-progress-text){
  794. color: #fff !important;
  795. }
  796. :deep(.@{ventSpace}-table-thead){
  797. background-color: transparent !important;
  798. & > tr{
  799. border: 1px solid #00f5fe !important;
  800. }
  801. & > tr > th{
  802. // border: none !important;
  803. color: #00f5fe !important;
  804. border-top: 1px solid #00f5fe !important;
  805. border-bottom: 1px solid #00f5fe !important;
  806. border-left: none !important;
  807. border-right: none !important;
  808. font-size: 13px;
  809. }
  810. }
  811. :deep(.@{ventSpace}-table-tbody){
  812. & > tr > td{
  813. font-size: 13px;
  814. }
  815. }
  816. :deep(.@{ventSpace}-table-small){
  817. border: none !important;
  818. }
  819. :deep(.@{ventSpace}-layout){
  820. background: transparent !important;
  821. }
  822. </style>