| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979 |
- <template>
- <div class="zl-box">
- <div class="zl-container-box">
- <customHeader >灾变应急管控系统</customHeader>
- <div class="emergency_box">
- <transition
- enter-active-class="animate__animated animate__slideInLeft"
- leave-active-class="animate__animated animate__slideOutLeft"
- >
- <div class="left-box lr-box" v-show="show">
- <div class="network-time">
- 本次解算时间:
- <span class="time">{{ pageData.currentTime }}</span>
- </div>
- <div class="analysis-box">
- <div class="item-top-title">工作面基本信息</div>
- <BorderBox1 class="border-bg" backgroundColor="#00bfff15" >
- <div class="detail-data-group">
- <div class="container-item" v-for="(data, index) in analysisDetailDataList" :key="index">
- <div class="item-icon">
- <SvgIcon class="icon-style" size="18" :name="data.icon" />
- </div>
- <div class="item-name">{{ data.name }}</div>
- <div v-if="data.code !== 'level' && data.code !== 'resistance'" class="item-value">{{ pageData[data.code] }}
- </div>
- <div v-if="data.code == 'level'" class="item-value">
- <!-- <span class="signal-round signal-round-run" :class="{'signal-round-run': Number(pageData.dTotalArea) > 2, 'signal-round-red': Number(pageData.dTotalArea) <= 2 }"></span> -->
- <span class="">{{ Number(pageData.dTotalArea) > 2 ? '容易':'难' }}</span>
- </div>
- <div v-if="data.code == 'resistance'" class="item-value">{{ totalPa }}</div>
- </div>
- </div>
- <!-- <div class="time-list" style="overflow-y: auto;">
- <dv-scroll-board ref="scrollBoardRef" :config="solveTimesData" style="width: 100%; height: 100px; font-weight: 500;" />
- </div> -->
- </BorderBox1>
- </div>
- </div>
- </transition>
- <transition
- enter-active-class="animate__animated animate__slideInRight"
- leave-active-class="animate__animated animate__slideOutRight"
- >
- <div class="right-box lr-box" v-show="show">
- <div class="sensor-box">
- <div class="item-top-title">传感器实时数据</div>
- <BorderBox1 class="table-box border-bg" backgroundColor="#00bfff15">
- <div class="table-container">
- <a-table :columns="sensorColumns" :data-source="pageData.sensorDataList" :pagination="false" size="small" />
- </div>
- </BorderBox1>
- </div>
- <div class="warning-box">
- <div class="item-top-title">预警报警信息</div>
- <BorderBox1 class="table-box border-bg" backgroundColor="#00bfff15">
- <div class="table-container">
- <a-table :columns="warningColumns" :data-source="pageData.warningDataList" :pagination="false" size="small">
- <template #bodyCell="{ column, record }">
- <div v-if="column.dataIndex == 'level'">
- <span class="signal-round"
- :class="{ 'signal-round-red': record['level'] == 1, 'signal-round-orange': record['level'] == 2, 'signal-round-yellow': record['level'] == 3 }"></span>
- </div>
- </template>
- </a-table>
- </div>
- </BorderBox1>
- </div>
- </div>
- </transition>
- </div>
- <transition
- enter-active-class="animate__animated animate__slideInUp"
- leave-active-class="animate__animated animate__slideOutDown"
- >
- <div class="bottom-box" v-show="show">
- <div class="slider-box">
- <a-slider v-model:value="sliderNum" :min="0" :max="100" />
- </div>
- <div class="to-small" @click="toHome"></div>
- <div class="bottom-left bottom-lr-box">
- <BorderBox11 class="border-bg" title="灾变网络解算" :color="['#00FFFF']" backgroundColor="#00bfff15">
- <div class="zl-top">
- <div>
- <span v-for="(device, index) in deviceTab " :key="index" class="btn" :class="{'active': device.code == deviceActiveCode }" @click="setTable(device.code)">{{ device.title }}</span>
- </div>
- </div>
- <div class="table-container">
- <a-table :columns="columns" :data-source="tableDate" :pagination="false" size="small" />
- </div>
- </BorderBox11>
- </div>
- <div class="bottom-left bottom-lr-box">
- <BorderBox11 class="border-bg" title="灾变应急路线" :color="['#00FFFF']" backgroundColor="#00bfff15">
- <div class="zl-top">
- <div>
- <span v-for="(device, index) in emergencyTab " :key="index" class="btn" :class="{'active': device.code == emergencyActiveCode }" @click="setTable(device.code)">{{ device.title }}</span>
- </div>
- </div>
- <div class="table-container">
- <a-table v-if="emergencyActiveCode === 'location'" :columns="locationColumns" :data-source="locationData" :pagination="false" size="small" ></a-table>
- <a-table v-else :columns="emergencyColumns" :data-source="emergencyData" :pagination="false" size="small" >
- <template #expandedRowRender>
- <a-table :columns="emergencyPathColumns" :data-source="emergencyPathData" :pagination="false"></a-table>
- </template>
- </a-table>
- </div>
- </BorderBox11>
- </div>
- </div>
- </transition>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { ref, onMounted, onUnmounted, defineEmits, defineProps, watch, reactive } from 'vue';
- import { Icon as SvgIcon } from '/@/components/Icon';
- import { BorderBox11, BorderBox1, ScrollBoard as DvScrollBoard } from '@kjgl77/datav-vue3';
- import { sensorColumns, networkColumns, warningColumns, locationColumns, emergencyColumns, emergencyPathColumns, deviceTab, emergencyTab, SensorType, NetworkType, windowColumns, gateColumns, WindowType, GateType, solveTimesData } from './network.data'
- import dayjs from 'dayjs'
- import { formatNum } from '/@/utils/ventutil'
- import customHeader from '/@/components/vent/customHeader.vue';
- import { Empty } from 'ant-design-vue';
- const emit = defineEmits(['changePageType'])
- const props = defineProps({
- pageResult: {
- type: Object,
- default: () => {}
- }
- })
- let count = 0;
- const sliderNum = ref(0)
- const pageData = reactive({
- currentTime: dayjs(new Date().getTime() + count).format('YYYY-MM-DD HH:mm:ss'),
- totalEnterNum: '-',
- totalToNum: '-',
- totallength: '-', // 总长
- level: '-',
- dTotalArea: '-',
- sensorDataList: <SensorType[]>[],
- networkDataList: <NetworkType[]>[],
- gateDataList: <GateType[]>[],
- windowDataList: <WindowType[]>[],
- warningDataList: []
- })
- const show = ref(false)
- const deviceActiveCode = ref('tun')
- const emergencyActiveCode = ref('location')
- const columns = ref(networkColumns)
- const emergencycolumns = ref(locationColumns)
- const tableDate = <any[]>ref(pageData.networkDataList as any)
- const totalPa = ref(1640 + '')
- const rate1 = ref(95 + '')
- const rate2 = ref(95 + '')
- const rate3 = ref(95 + '')
- const locationData = []
- const emergencyData = []
- const emergencyPathData = []
- const analysisDetailDataList = [
- {
- code: 'dTotalArea',
- name: '工作面编号',
- icon: 'path-icon4'
- },
- {
- code: 'dTotalArea',
- name: '所属采区',
- icon: 'path-icon4'
- },
- {
- code: 'dTotalArea',
- name: '所属煤层',
- icon: 'path-icon4'
- },
- {
- code: 'totallength',
- name: '工作面长度(m)',
- icon: 'path-icon1'
- },
- {
- code: 'totallength',
- name: '工作面走向长度(m)',
- icon: 'path-icon1'
- },
- {
- code: 'totallength',
- name: '工作面采高(m)',
- icon: 'path-icon1'
- },
- {
- code: 'resistance',
- name: '灾变等级',
- // value: totalPa.value,
- icon: 'path-icon3'
- },
-
- ]
- const maxPaths = ref([])
- const activePath = ref(1)
- let solveTimes: [string, string][] = []
- const scrollBoardRef = ref()
- function toHome() {
- show.value = false
- setTimeout(() => {
- emit('changePageType', 'model3D')
- }, 1200)
- }
- function changeActive(index){
- activePath.value = index
- }
- function analyzePageResult(resultData){
- console.log('数据接收到------', resultData);
- if(!resultData) return
- pageData.currentTime = dayjs().format('YYYY-MM-DD HH:mm:ss');
- const sensorDataList = <SensorType[]>[];
- const networkDataList = <NetworkType[]>[]
- const gateDataList = <GateType[]>[]
- const windowDataList = <WindowType[]>[]
-
- if(resultData['solutionresult']){
-
- const solutionresult = resultData['solutionresult'] || null;
- pageData.totalEnterNum = solutionresult['TotalInQ'] != null ? formatNum(Number(solutionresult['TotalInQ'])) : '-';
- pageData.totalToNum = solutionresult['TotalOutQ'] != null ? formatNum(Number(solutionresult['TotalOutQ'])): '-';
- pageData.totallength = solutionresult['TotalLength'] != null ? formatNum(Number(solutionresult['TotalLength'])) : '-';
- pageData.dTotalArea = solutionresult['dTotalArea'] != null ? formatNum(Number(solutionresult['dTotalArea'])) : '-';
-
- if (solutionresult['tuns'])
- for (const key in solutionresult['tuns']) {
- const item = solutionresult['tuns'][key]
- const obj = {
- nTunID: key,
- strName: item['strName'],
- dHFric: item['dHFric'] != null ? item['dHFric'].toFixed(2) : '-', //摩擦阻力
- dHLocal: item['dHNature'] != null ? item['dHNature'].toFixed(2) : '-', //局部阻力
- dHNature: item['dHNature'] != null ? item['dHNature'].toFixed(2) : '-', //自然风压
- dHTotal: item['dHTotal'] != null ? item['dHTotal'].toFixed(2) : '-', //总阻力
- fRealQ: item['fRealQ'] != null ? item['fRealQ'].toFixed(2) : '-', //实时风量
- fRealV: item['fRealV'] != null ? item['fRealV'].toFixed(2) : '-', //实时风速
- }
- networkDataList.push(obj)
- }
- if (solutionresult['gates'])
- for (const key in solutionresult['gates']) {
- const item = solutionresult['gates'][key]
- const obj = {
- nGateID: key,
- strName: item['strName'],
- data_dHDiff: item['data_dHDiff'] != null ? item['data_dHDiff'].toFixed(2) : '-', //风门压差
- data_dQ_min: item['data_dQ_min'] != null ? item['data_dQ_min'].toFixed(2) : '-', //风门漏风量
- data_dQ_s: item['data_dQ_s'] != null ? item['data_dQ_s'].toFixed(2) : '-', //风门漏风量
- }
- gateDataList.push(obj)
- }
- if (solutionresult['windows'])
- for (const key in solutionresult['windows']) {
- const item = solutionresult['windows'][key]
- const obj = {
- nWindowID: key,
- strName: item['strName'],
- data_dHDiff: item['data_dHDiff'] != null ? item['data_dHDiff'].toFixed(2) : '-', //风门压差
- data_dQ_min: item['data_dQ_min'] != null ? item['data_dQ_min'].toFixed(2) : '-', //风门漏风量
- data_dQ_s: item['data_dQ_s'] != null ? item['data_dQ_s'].toFixed(2) : '-', //风门漏风量
- }
- windowDataList.push(obj)
- }
- if(solutionresult['MaxHPaths']){
- maxPaths.value = solutionresult['MaxHPaths']
- }
- }
-
- if (resultData['monitors'] && resultData['monitors'].length > 0) {
- resultData['monitors'].forEach((item => {
- item = {
- strinstallpos: item.strinstallpos,
- va: item['readData']['va'] != null ? Number(item['readData']['va']).toFixed(2) : '-',
- m3: item['readData']['m3'] != null ? formatNum(Number(item['readData']['m3'])) : '-',
- }
- sensorDataList.push(item)
- }))
- }
-
-
- // const solutionresult = JSON.parse(result['result'])
-
- // if (solutionresult) {
-
-
- // }
-
- pageData.sensorDataList = sensorDataList
- // pageData.warningDataList = result['warns']
- pageData.networkDataList = networkDataList
- pageData.gateDataList = gateDataList
- pageData.windowDataList = windowDataList
- setTable(deviceActiveCode.value)
- solveTimes = [[dayjs().format('YYYY-MM-DD HH:mm:ss'), '解算用时'+ (Math.random() * 0.1 + 3).toFixed(2) + 's'] , ...solveTimes]
- const tempSolveTimes = [...solveTimes]
- tempSolveTimes[0] = [`<span style="color:#00F5FE;" >${tempSolveTimes[0][0]}</span>`, `<span style="color:#00F5FE;" >${tempSolveTimes[0][1]}</span>`]
- scrollBoardRef.value.updateRows(tempSolveTimes, 0)
- }
- function setTable(code) {
- if(code == 'tun'){
- deviceActiveCode.value = code
- columns.value = networkColumns
- tableDate.value = pageData.networkDataList
- }else if(code === 'gate'){
- deviceActiveCode.value = code
- columns.value = gateColumns
- tableDate.value = pageData.gateDataList
- }else if(code === 'window') {
- deviceActiveCode.value = code
- columns.value = windowColumns
- tableDate.value = pageData.windowDataList
- } else if(code === 'location') {
- emergencyActiveCode.value = code
- } else if(code === 'emergency') {
- emergencyActiveCode.value = code
- }
- }
- watch(() => props.pageResult, (newData) => {
-
- analyzePageResult(newData)
- })
- onMounted(() => {
- show.value = true
- });
- onUnmounted(() => {
-
- });
- </script>
- <style scoped lang="less">
- @ventSpace: zxm;
- .vent-home-header {
- width: 100%;
- height: 100px;
- position: fixed;
- top: 0;
- background: url('/@/assets/images/vent/new-home/header-bg.png') no-repeat;
- background-size: contain;
- display: flex;
- justify-content: center;
- z-index: 99;
- .header-icon {
- margin-top: 45px;
- }
- .header-text {
- position: fixed;
- top: 18px;
- color: #fff;
- font-size: 26px;
- }
- }
- .zl-box {
- width: 100%;
- height: calc(100%);
- top: 50px;
- position: relative;
- overflow: hidden;
- color: #fff;
- background-position: center;
- background-size: cover;
- .modal-box {
- position: relative;
- width: 100%;
- height: 100%;
- top: 0;
- left: 0;
- }
- }
- .zl-container-box {
- width: 100%;
- height: 100%;
- top: 10px;
- position: relative;
- z-index: 99;
- pointer-events: none;
- .emergency_box {
- display: flex;
- justify-content: space-between;
- height: 550px;
- position: relative;
- .lr-box {
- width: 374px;
- margin-top: 10px;
- }
- .left-box {
- .network-time{
- height: 50px;
- padding-left: 10px;
- font-size: 18px;
- position: relative;
- top: -5px;
- .time{
- font-size: 26px;
- color: #00f5fe;
- font-family: 'electronicFont';
- }
- }
- .analysis-box {
- position: relative;
- .detail-data-group {
- width: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- margin-top: 15px;
- padding-top: 30px;
- .container-item {
- width: 307px;
- height: 63px;
- display: flex;
- position: relative;
- background: url('/@/assets/images/vent/plane-bottom.png') no-repeat;
- background-size: auto;
- background-position: bottom;
- padding: 10px 30px;
- &::before {
- content: '';
- display: block;
- width: 100%;
- height: 5px;
- position: absolute;
- top: 62px;
- left: 0;
- background-color: #73f4ff66;
- backdrop-filter: blur(5px);
- }
- .item-icon {
- width: 60px;
- height: 45px;
- background: url('/@/assets/images/vent/plane-icon-bg.png') no-repeat;
- background-size: cover;
- .icon-style {
- margin: 10px 0 0 18px;
- }
- }
- .item-name {
- width: 180px;
- line-height: 60px;
- margin-left: 5px;
- text-align: left;
- }
- .item-value {
- position: relative;
- height: 26px;
- line-height: 24px;
- margin: 15px 0;
- text-align: center;
- width: 80px;
- border: 1px solid #00f5fe;
- border-radius: 13px;
- background: linear-gradient(to right, #00f5fe44, #0090ff44);
- &::before {
- width: 6px;
- height: 6px;
- content: '';
- position: absolute;
- left: -3px;
- top: 8px;
- background: #ffa500;
- border-radius: 3px;
- }
- }
- }
- }
- .feature-group {
- display: flex;
- flex-direction: row;
- padding: 20px;
- margin-top: 15px;
- .feature-item {
- width: 108px;
- height: 120px;
- background: url('/@/assets/images/vent/path/path-feature-bg.png');
- display: flex;
- flex-direction: column;
- // justify-content: center;
- .pie {
- display: flex;
- justify-content: center;
- }
- .data {
- margin-top: 15px;
- font-size: 12px;
- scale: 0.9;
- text-align: center;
- }
- }
- }
- .time-list{
- height: 142px;
- margin: 30px 15px 0px 30px;
- padding-bottom: 10px;
- pointer-events: auto;
- .row-item:first-child{
- color: #00f5fe !important;
- }
- }
- }
- }
- .right-box {
- display: flex;
- flex-direction: column;
- .sensor-box,
- .warning-box {
- position: relative;
- // min-height: 220px;
- // max-height: 250px;
- .table-box {
- height: 280px;
- width: 100%;
- position: relative;
- .table-container {
- width: calc(100% - 40px);
- margin: 25px 20px 20px;
- height: 250px;
- position: absolute;
- }
- }
- }
- .sensor-box {
- .item-top-title {
- &::after {
- left: 110px;
- }
- &::before {
- left: 265px;
- }
- }
- }
- .warning-box {
- margin-top: 10px;
- }
- }
- }
-
- .bottom-box {
- width: 100%;
- height: calc(40% - 80px);
- display: flex;
- justify-content: space-between;
- margin-top: 0px;
- position: relative;
- top: 20px;
- pointer-events: auto;
- .slider-box{
- position: absolute;
- }
- .to-small {
- width: 60px;
- height: 60px;
- background: url('/@/assets/images/vent/home/tosmall.png') no-repeat center;
- background-size: auto;
- position: absolute;
- top: -95px;
- right: 400px;
- border-radius: 10px;
- padding: 8px;
- backdrop-filter: blur(10px);
- background-color: rgba(45, 86, 137, 0.418);
- &:hover {
- background-color: rgba(79, 104, 134, 0.418);
- }
- }
- .bottom-lr-box {
- flex: 1;
- display: flex;
- justify-content: center;
- }
- .network-top {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- position: absolute;
- // top: 55px;
- top: 45px;
- right: 0;
- padding: 0 10px 0 30px;
- z-index: 999;
- .network-top-left {
- display: flex;
- div {
- margin-right: 20px;
- }
- span {
- font-family: 'douyuFont';
- font-size: 15px;
- }
- .accuracy-rate {
- color: #FFA500;
- }
- .error-rate {
- color: #00f5fe;
- }
- }
- .time {
- color: #949494;
- }
- }
- .bottom-left {
- margin-right: 0px !important;
- position: relative;
- .table-container {
- height: 210px;
- margin-top: 40px;
- margin-left: 10px;
- margin-right: 8px;
- }
- }
- .bottom-right {
- // margin-left: 10px;
- .zl-container {
- width: 100%;
- height: 100%;
- margin: 0 10px;
- background: url('/@/assets/images/vent/path/zl-bg1.png') no-repeat;
- background-size: 940px 240px;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- &::after {
- content: '';
- display: block;
- position: absolute;
- width: 100%;
- height: 100%;
- top: 85px;
- background: url('/@/assets/images/vent/path/zl-bg2.png') no-repeat;
- background-size: 920px 100px;
- }
- }
- .zl-path-item {
- height: 67px;
- background: url('/@/assets/images/vent/path/zl-path-item-bg.png') no-repeat;
- background-size: auto;
- background-position: center bottom;
- position: absolute;
- scale: 0.9;
- .title {
- position: relative;
- top: -20px;
- text-align: center;
- font-size: 12px;
- background: #00f5fe33;
- padding: 3px 5px;
- backdrop-filter: blur(5px);
- }
- }
- .position11 {
- top: 128px;
- left: 120px;
- }
- .position10 {
- top: 130px;
- left: 0px;
- }
- .position9 {
- top: 52px;
- left: 100px;
- }
- .position8 {
- top: 132px;
- left: 270px;
- }
- .position7 {
- top: 128px;
- left: 420px;
- }
- .position6 {
- top: 60px;
- left: 320px;
- }
- .position5 {
- top: 120px;
- left: 580px;
- }
- .position4 {
- top: 123px;
- left: 690px;
- }
- .position3 {
- top: 103px;
- left: 830px;
- }
- .position2 {
- top: 90px;
- left: 740px;
- }
- .position1 {
- top: 80px;
- left: 535px;
- }
- }
- }
- .zl-top {
- width: calc(100% - 30px);
- padding: 0 20px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- position: relative;
- top: 35px;
- z-index: 99;
- margin: 10px;
- border-bottom: 1px solid #00f5fe88;
- .btn {
- padding: 3px 10px;
- border-top: 1px solid #c6c6c6;
- background-image: linear-gradient(#c2c2c2aa, #b3b3b388 20%, #5a5a5a88);
- cursor: pointer;
- margin-right: 5px;
- &:hover,
- &:active {
- border-top: 1px solid #00f5fe;
- background-image: linear-gradient(#00f5feaa, #1adce288 20%, #00848988);
- }
- }
- .active {
- border-top: 1px solid #00f5fe;
- background-image: linear-gradient(#00f5feaa, #1adce288 20%, #00848988);
- }
- .data {
- font-family: 'douyuFont';
- color: #FFA500;
- font-size: 15px;
- }
- }
- }
- .item-top-title {
- width: 374px;
- height: 32px;
- text-align: center;
- line-height: 34px;
- font-size: 15px;
- font-weight: 600;
- color: #fafafa;
- position: absolute;
- padding-top: 0px;
- top: -9px;
- z-index: 999;
- &::before {
- content: '';
- display: block;
- width: 40px;
- height: 1px;
- position: absolute;
- left: 255px;
- top: 50%;
- transform: translateY(-50%);
- -webkit-transform: translate(-50%, -50%);
- background-color: #00d4fe88;
- }
- &::after {
- content: '';
- display: block;
- width: 40px;
- height: 1px;
- position: absolute;
- left: 120px;
- top: 50%;
- transform: translateY(-50%);
- -webkit-transform: translate(-50%, -50%);
- background-color: #00d4fe88;
- }
- }
- .signal-round {
- display: inline-block;
- width: 4px;
- height: 4px;
- border-radius: 50%;
- position: relative;
- top: -3px;
- &::after {
- display: block;
- content: '';
- position: absolute;
- width: 8px;
- height: 8px;
- top: -2px;
- left: -2px;
- border-radius: 50%;
- background-color: #daffc044;
- box-shadow: 0 0 1px 1px #c6ff7722;
- }
- }
- .signal-round-run {
- background-color: #67fc00;
- &::after {
- background-color: #daffc044;
- box-shadow: 0 0 1px 1px #c6ff7722;
- }
- }
- .signal-round-red {
- background-color: #FF3823;
- &::after {
- background-color: #FF382344;
- box-shadow: 0 0 1px 1px #FF382333;
- }
- }
- .signal-round-orange {
- background-color: #FF9B17;
- &::after {
- background-color: #FF9B1744;
- box-shadow: 0 0 1px 1px #FF9B1733;
- }
- }
- .signal-round-yellow {
- background-color: #FFFF00;
- &::after {
- background-color: #FFFF0044;
- box-shadow: 0 0 1px 1px #FFFF0033;
- }
- }
- .table-container {
- overflow-y: auto;
- overflow-x: hidden;
- pointer-events: auto;
- &::-webkit-scrollbar {
- width: 4px;
- height: 8px;
- background-color: #f5f5f500;
- }
- &::-webkit-scrollbar-track {
- background-color: #ffffff33;
- border-radius: 10px;
- }
- &::-webkit-scrollbar-thumb {
- background-color: #cccccc44;
- border-radius: 10px;
- }
- }
- .border-bg{
- padding-bottom: 20px;
- backdrop-filter: blur(5px);
- }
- @keyframes scale {
- 0% {
- transform: translate(-50%, -50%) scale(0.9);
- opacity: 1;
- }
- 100% {
- transform: translate(-50%, -50%) scale(1.5);
- opacity: 0;
- }
- }
- :deep(.@{ventSpace}-progress-text) {
- color: #fff !important;
- }
- :deep(.@{ventSpace}-table-thead) {
- background-color: transparent !important;
- &>tr {
- border: 1px solid #00f5fe !important;
- }
- &>tr>th {
- // border: none !important;
- color: #00f5fe !important;
- border-top: 1px solid #00f5fe !important;
- border-bottom: 1px solid #00f5fe !important;
- border-left: none !important;
- border-right: none !important;
- font-size: 13px;
- }
- }
- :deep(.@{ventSpace}-table-tbody) {
- &>tr>td {
- font-size: 13px;
- }
- }
- :deep(.@{ventSpace}-table-small) {
- border: none !important;
- }
- :deep(.@{ventSpace}-layout) {
- background: transparent !important;
- }</style>
|