12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007 |
- <template>
- <div id="compressor3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
- <template v-for="(sysItem, sysIndex) in monitorDataGroupArr" :key="sysIndex">
- <div
- :id="`compressorCss3D${sysIndex + 1}`"
- class="threejs-Object-CSS compressorCss3D-box"
- style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px"
- >
- </div>
- </template>
- <div v-for="(sysItem, sysIndex) in monitorDataGroupArr" :key="sysIndex" style="position: absolute; z-index: -1">
- <div v-show="monitorDataGroupFlag == sysIndex + 1" :id="`nitrogenMonitorBox${sysIndex}`">
- <div v-for="(groupNum, index) in sysItem" :key="index" class="modal-monitor">
- <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
- <div class="title">{{ `空压机${groupNum}` }} </div>
- <template v-for="(preMonitor, preMonitorIndex) in preMonitorList" :key="preMonitorIndex">
- <div v-if="preMonitor.code !== 'signal'" class="monitor-item">
- <span class="monitor-title">{{ preMonitor.title }}:</span>
- <span class="monitor-val"
- ><span class="val">{{
- monitorData[preMonitor.code.replace(prefix[0], `${prefix[0]}${groupNum}`)]
- ? formatNum(monitorData[preMonitor.code.replace(prefix[0], `${prefix[0]}${groupNum}`)])
- : '-'
- }}</span
- ><span class="unit">{{ preMonitor.unit }}</span></span
- >
- </div>
- <div v-else class="signal-item">
- <div class="signal" v-for="(signal, childIndex) in preMonitor.child" :key="childIndex">
- <span class="monitor-title">{{ signal.title }}</span>
- <span
- :class="{
- 'signal-round': true,
- 'signal-round-run': signal.title != '故障信号' && monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] == '1',
- 'signal-round-warning':
- signal.title == '故障信号' && monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] == '1',
- 'signal-round-gry': monitorData[signal.code.replace(prefix[0], `${prefix[0]}${groupNum}`)] != '1',
- }"
- ></span>
- </div>
- </div>
- </template>
- </fourBorderBg>
- <fourBorderBg :class="`cqg${groupNum}`" :id="`cqgMonitor${groupNum}`" v-if="cqgMonitorList.length > 0">
- <div class="title">{{ `风包${groupNum}` }}</div>
- <template v-for="(cqgMonitor, cqgMonitorIndex) in cqgMonitorList" :key="cqgMonitorIndex">
- <div class="monitor-item">
- <span class="monitor-title">{{ cqgMonitor.title }}:</span>
- <span class="monitor-val"
- ><span class="val">{{
- monitorData[cqgMonitor.code.replace(prefix[0], `${prefix[1]}${groupNum}`)]
- ? formatNum(monitorData[cqgMonitor.code.replace(prefix[1], `${prefix[1]}${groupNum}`)])
- : '-'
- }}</span
- ><span class="unit">{{ cqgMonitor.unit }}</span></span
- >
- </div>
- </template>
- </fourBorderBg>
- </div>
- </div>
- </div>
- <div class="nitrogen-home">
- <div style="position: absolute; color: #fff; top: 30px; pointer-events: auto; display: flex" v-if="monitorDataGroupArr.length > 1">
- <div
- v-for="(sysItem, sysIndex) in monitorDataGroupArr"
- :key="sysIndex"
- class="tab-button-box"
- :class="{ 'tab-button-box-active': monitorDataGroupFlag == sysIndex + 1 }"
- @click="setMonitorGroupNum(sysIndex + 1)"
- >{{ '压风系统' + (sysIndex + 1) }}
- <!-- (运行: <p style="padding: 0 5px"></p
- ><span
- :class="{
- 'signal-round': true,
- 'signal-round-run': sysStateList[sysIndex] && sysStateList[sysIndex].isRun,
- 'signal-round-gry': sysStateList[sysIndex] && !sysStateList[sysIndex].isRun,
- }"
- ></span>
- <p style="padding: 0 5px"></p>故障:<p style="padding: 0 5px"></p
- ><span
- :class="{
- 'signal-round': true,
- 'signal-round-warning': sysStateList[sysIndex] && sysStateList[sysIndex].fault,
- 'signal-round-gry': sysStateList[sysIndex] && !sysStateList[sysIndex].fault,
- }"
- ></span
- ><p style="padding: 0 5px"></p> ) -->
- </div>
- </div>
- <div class="total-data">
- <div class="vent-flex-row item-box">
- <div class="item" v-for="(data, index) in totalData" :key="index"
- >{{ data.title + '(' + data.unit + ')' }}:<span class="val">{{
- monitorData[data.code] ? formatNum(monitorData[data.code]) : '-'
- }}</span></div
- >
- </div>
- </div>
- <div class="nitrogen-container">
- <div v-if="monitorData['netStatus'] == 0" class="device-state">网络断开</div>
- <div class="top-box">
- <!-- 左边监测数据 -->
- <div class="lr-box left-box">
- <div class="left-container" v-if="preFanMonitorData.length > 0">
- <div class="item item-l" v-for="(groupNum, index) in monitorDataGroup" :key="index">
- <div class="monitor-box">
- <ventBox1>
- <template #title>
- <div>{{ groupNum }}号压风机</div>
- </template>
- <template #container>
- <div class="state-item">
- <div class="item-col" v-for="(preFan, preFanIndex) in preFanMonitorData" :key="preFanIndex">
- <span class="state-title">{{
- preFan.title + (preFan.unit !== 'signal' && preFan.unit !== 'warning' ? `(${preFan.unit})` : '')
- }}</span>
- <span v-if="preFan.unit !== 'signal' && preFan.unit !== 'warning'" class="state-val">{{
- monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)] >= 0
- ? formatNum(Number(monitorData[preFan.code.replace(prefix[2], prefix[2] + groupNum)]))
- : '-'
- }}</span>
- <span
- v-else
- :class="{
- 'signal-round': true,
- 'signal-round-run':
- preFan.unit == 'signal' && monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] != '1',
- 'signal-round-warning':
- preFan.unit == 'warning' && monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] == '1',
- 'signal-round-gry': monitorData[preFan.code.replace(prefix[2], `${prefix[2]}${groupNum}`)] != '1',
- }"
- ></span>
- </div>
- </div>
- </template>
- </ventBox1>
- </div>
- </div>
- </div>
- </div>
- <div class="lr-box right-box">
- <div class="right-container" v-if="(btnSet && btnSet.length > 0) || (controlSet && controlSet.length > 0)">
- <ventBox1>
- <template #title>
- <div>设备控制</div>
- </template>
- <template #container>
- <div class="vent-flex-row btn-box" v-if="btnSet">
- <div class="btn btn1 ml-16px" v-for="(btn, index) in btnSet" :key="index">{{ btn.title }}</div>
- </div>
- <template v-if="controlSet">
- <div class="input-item" v-for="(item, index) in controlSet" :key="index">
- <div class="title-auto">{{ item.title }}:</div>
- <div>
- <a-input class="input-value" v-model="item.value" />
- <span class="btn btn1 vent-margin-l-8">保存</span>
- </div>
- </div>
- </template>
- </template>
- </ventBox1>
- </div>
- </div>
- <div ref="playerRef" class="playerBox"> </div>
- </div>
- </div>
- </div>
- </template>
- <script lang="ts" setup name="nitrogenHome">
- import { onMounted, onUnmounted, ref, onBeforeUnmount } from 'vue';
- import fourBorderBg from '../../../comment/components/fourBorderBg.vue';
- import { mountedThree, destroy, setModelType } from '../nitrogen.threejs';
- import { list } from '../nitrogen.api';
- import ventBox1 from '/@/components/vent/ventBox1.vue';
- import { getMonitorData } from '../nitrogen.data.1';
- import type { State } from '../nitrogen.data.1';
- import { formatNum } from '/@/utils/ventutil';
- import { useCamera } from '/@/hooks/system/useCamera';
- const { monitorDataGroupArr, preFanMonitorData, preMonitorList, cqgMonitorList, prefix, getSysState, totalData, btnSet, controlSet } =
- await getMonitorData();
- const loading = ref(true);
- const monitorDataGroupFlag = ref(1);
- const monitorDataGroup = ref<Number[]>([]);
- const kyjs = ref<string[]>([]);
- const cqgs = ref<string[]>([]);
- const monitorData = ref<Object | []>({});
- const sysStateList = ref<State[]>([]);
- const playerRef = ref();
- const { getCamera, removeCamera } = useCamera();
- // https获取监测数据
- let timer: null | NodeJS.Timeout = null;
- async function getMonitor(flag?) {
- if (Object.prototype.toString.call(timer) === '[object Null]') {
- return new Promise(async (resolve) => {
- timer = await setTimeout(
- async () => {
- await getDataSource();
- if (timer) {
- timer = null;
- }
- resolve(null);
- await getMonitor(false);
- },
- flag ? 0 : 1000
- );
- });
- }
- }
- async function getDataSource() {
- const res = await list({ devicetype: 'forcFan', pagetype: 'normal' });
- let dataSource = res.msgTxt[0] && res.msgTxt[0].datalist ? res.msgTxt[0].datalist[0] : [];
- // dataSource = {
- // msgType: null,
- // deviceID: '1773237923639201793',
- // strname: '寸草塔二矿压风机',
- // strinstallpos: '寸草塔二矿压风机',
- // fsectarea: 'null',
- // stationname: '寸草塔二矿压风机',
- // stationtype: 'redis',
- // deviceType: 'forcFan_normal',
- // typeName: '压风机',
- // netStatus: 1,
- // warnFlag: 0,
- // warnLevel: 0,
- // warnLevel_str: '正常',
- // warnTime: null,
- // readTime: '2024-04-07 14:47:23',
- // warnDes: '',
- // frontGateOpenCtrl: null,
- // rearGateOpenCtrl: null,
- // readData: {
- // PRE1_MOT_PhaseATemp: '27',
- // PRE3_CPR_CoolantTemp: '76',
- // PRE3_MOT_PhaseCTemp: '92',
- // sign: '0',
- // PRE1_CPR_UnLoadPre: '6.7',
- // PRE1_CPR_LoadorUnload: '0',
- // PRE3_CPR_ExhaustPre: '6.0',
- // PRE2_CPR_ExhaustTemp: '47',
- // PRE3_MOT_DrivingEndVibrationValid: '-8.6',
- // PRE1_VLS_OverTempAlarm: '0',
- // PRE2_CPR_LoadorUnload: '1',
- // PRE2_AlamSignal: '0',
- // PRE3_MOT_PhaseBTemp: '91',
- // PRE2_MOT_DrivingEndVibrationValid: '-8.6',
- // PRE1_CPR_ExhaustPre: '5.7',
- // PRE3_FaultSignal: '0',
- // PRE3_MOT_Power: '0',
- // PRE3_MOT_PhaseATemp: '103',
- // PRE2_CPR_CoolantTemp: '73',
- // PRE1_HostTemp: '22',
- // PRE1_FaultSignal: '0',
- // PRE2_FaultSignal: '0',
- // PRE2_VLS_OverTempAlarm: '0',
- // PRE2_MOT_FrontAxleTemp: '43',
- // PRE3_MOT_BackAxleTemp: '57',
- // PRE1_MOT_TotalRunTime: '493',
- // PRE3_MOT_FrontAxleTemp: '80',
- // PRE3_VLS_OverTempAlarm: '0',
- // PRE1_CPR_LoadTime: '7143',
- // PRE2_CPR_LoadTime: '6036',
- // PRE3_CPR_LoadTime: '4019',
- // PRE2_MOT_Power: '0',
- // PRE2_MOT_PhaseBTemp: '72',
- // PRE2_HostTemp: '101',
- // PRE2_MOT_TotalRunTime: '7318',
- // PRE3_MOT_NoneDrivingEndVibrationValid: '-8.46',
- // PRE2_MOT_NoneDrivingEndVibrationValid: '-8.44',
- // PRE2_MOT_BackAxleTemp: '52',
- // PRE1_MOT_NoneDrivingEndVibrationValid: '0.0',
- // PRE1_Status: '0',
- // PRE3_Status: '1',
- // PRE2_Status: '1',
- // PRE1_VLS_Temp: '35',
- // PRE3_CPR_UnLoadPre: '7.2',
- // PRE1_AlamSignal: '0',
- // PRE2_CPR_ExhaustPre: '5.8',
- // PRE3_CPR_ExhaustTemp: '50',
- // PRE3_MOT_TotalRunTime: '4038',
- // PRE1_MOT_BackAxleTemp: '26',
- // PRE2_MOT_PhaseATemp: '72',
- // PRE1_MOT_FrontAxleTemp: '34',
- // PRE3_VLS_Temp: '53',
- // PRE1_MOT_Power: '351',
- // PRE1_CPR_LoadPre: '6.0',
- // PRE1_MOT_DrivingEndVibrationValid: '0.0',
- // PRE3_AlamSignal: '0',
- // PRE3_CPR_LoadPre: '6.5',
- // PRE2_CPR_LoadPre: '6.1',
- // PRE3_CPR_LoadorUnload: '1',
- // PRE1_MOT_PhaseCTemp: '27',
- // TotalOutPipePre: '5.75',
- // PRE1_CPR_CoolantTemp: '23',
- // PRE1_MOT_PhaseBTemp: '26',
- // PRE2_MOT_PhaseCTemp: '71',
- // PRE2_CPR_UnLoadPre: '7.2',
- // PRE3_HostTemp: '96',
- // PRE2_VLS_Temp: '49',
- // isRun: '-2',
- // PRE1_CPR_ExhaustTemp: '27',
- // TotalOutPipeFlow: '9999',
- // },
- // readDataDes: null,
- // summaryHour: [],
- // summaryDay: [],
- // history: [],
- // dayhistory: [],
- // totalInfo: null,
- // sign: null,
- // cameras: [],
- // links: [],
- // other1: null,
- // other2: null,
- // other3: null,
- // remarkInfo: null,
- // linkInfo: null,
- // };
- if (dataSource) {
- Object.assign(monitorData.value, dataSource, dataSource.readData);
- }
- loading.value = false;
- sysStateList.value = getSysState(monitorData.value);
- }
- function setMonitorGroupNum(flag) {
- if (flag != monitorDataGroupFlag.value) monitorDataGroupFlag.value = flag;
- const monitorGroup = monitorDataGroupArr[flag - 1];
- setModelType('compressor' + (flag - 1));
- monitorDataGroup.value = monitorGroup;
- }
- onMounted(async () => {
- setTimeout(() => {
- mountedThree(monitorDataGroupArr).then(async () => {
- setMonitorGroupNum(1);
- getMonitor(true).then(async () => {
- if (monitorData.value && monitorData.value['deviceID']) await getCamera(monitorData.value['deviceID'], playerRef.value);
- });
- });
- }, 0);
- });
- onBeforeUnmount(() => {
- removeCamera();
- });
- onUnmounted(() => {
- destroy();
- removeCamera();
- if (timer) {
- clearTimeout(timer);
- timer = undefined;
- }
- });
- </script>
- <style lang="less" scoped>
- @import '../../comment/less/workFace.less';
- @ventSpace: zxm;
- .compressorCss3D-box {
- .modal-monitor {
- position: absolute;
- left: 0px;
- top: 0px;
- }
- &:deep(.win) {
- margin: 0 !important;
- background: #00000044;
- }
- &:deep(.main) {
- .title {
- height: 34px;
- text-align: center;
- font-weight: 600;
- color: #7af5ff;
- // background-image: url('../../../assets/img/yfj/light.png');
- background-repeat: no-repeat;
- background-position-x: center;
- background-position-y: 100%;
- background-size: 80%;
- font-size: 16px;
- }
- .monitor-item {
- display: flex;
- flex-direction: row;
- width: auto;
- margin-bottom: 3px;
- .monitor-val {
- color: #ffb700;
- display: flex;
- width: auto;
- .val {
- width: 80px;
- font-size: 14px;
- }
- .unit {
- color: #ffffffbb;
- font-size: 14px;
- }
- }
- }
- .monitor-title {
- width: 100px;
- color: #7af5ff;
- font-weight: 400;
- font-size: 14px;
- }
- .signal-item {
- display: flex;
- justify-content: space-between;
- // margin-bottom: 5px;
- .signal-round {
- display: inline-block;
- width: 8px;
- height: 8px;
- border-radius: 50%;
- margin: 0 10px;
- position: relative;
- &::after {
- display: block;
- content: '';
- position: absolute;
- width: 12px;
- height: 12px;
- top: -2px;
- left: -2px;
- border-radius: 50%;
- }
- }
- .signal-round-gry {
- background-color: #858585;
- &::after {
- background-color: #85858544;
- box-shadow: 0 0 1px 1px #85858599;
- }
- }
- .signal-round-run {
- background-color: #67fc00;
- &::after {
- background-color: #67fc0044;
- box-shadow: 0 0 1px 1px #c6ff77;
- }
- }
- .signal-round-warning {
- background-color: #e9170b;
- &::after {
- background-color: #e9170b44;
- box-shadow: 0 0 1px 1px #e9170b;
- }
- }
- }
- }
- }
- .nitrogen-home {
- width: 100%;
- height: calc(100%);
- position: fixed;
- z-index: 99;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- pointer-events: none;
- top: 60px;
- .total-data {
- position: absolute;
- color: #e4cd00;
- z-index: 9;
- top: 20px;
- right: 30px;
- // display: flex;
- font-size: 18px;
- .item-box {
- width: 600px;
- flex-wrap: wrap;
- .item {
- width: 250px;
- margin-left: 30px;
- .val {
- color: #00d8ff;
- }
- }
- }
- }
- .nitrogen-container {
- width: 100%;
- height: calc(100%);
- display: flex;
- justify-content: space-between;
- position: relative;
- .device-state {
- width: 100%;
- position: absolute;
- top: 20px;
- color: #e90000;
- display: flex;
- justify-content: center;
- font-size: 20px;
- }
- .top-box {
- width: 100%;
- padding: 10px;
- overflow: hidden;
- display: flex;
- justify-content: space-between;
- .lr-box {
- display: flex;
- flex-direction: column;
- position: relative;
- z-index: 9999;
- pointer-events: auto;
- }
- .item {
- width: 285px;
- height: auto;
- position: relative;
- border-radius: 5px;
- margin-top: 10px;
- margin-bottom: 0px;
- pointer-events: auto;
- color: #fff;
- overflow: hidden;
- .control-item {
- height: auto;
- min-height: 35px;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding: 5px;
- margin: 0 10px 0 3px;
- pointer-events: auto;
- background: linear-gradient(to right, #0063cd22, #0063cd04);
- margin-bottom: 5px;
- border-width: 1px;
- border-style: dashed;
- border-image: linear-gradient(to right, #008ccd66, #0063cd04) 1 1;
- border-radius: 5px;
- &:last-child {
- margin-bottom: 0;
- }
- .control-item-l {
- display: flex;
- align-items: center;
- font-size: 14px;
- .round {
- display: inline-block;
- width: 3px;
- height: 3px;
- padding: 1px;
- border-radius: 50%;
- background-color: #3df6ff;
- margin-right: 5px;
- box-shadow: 0 0 1px 1px #64f7ff;
- }
- }
- .control-item-r {
- text-align: right;
- }
- .button-box {
- position: relative;
- padding: 5px;
- border: 1px transparent solid;
- background-clip: border-box;
- border-radius: 5px;
- margin-left: 8px;
- }
- .a-button {
- pointer-events: auto;
- }
- &::v-deep .a-button--mini {
- padding: 6px 10px;
- }
- &::v-deep .a-button--mini.is-round {
- padding: 6px 10px;
- }
- }
- .base-title {
- width: calc(100% - 60px);
- text-align: center;
- color: #00d8ff;
- }
- .state-item {
- width: 100%;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- .item-col {
- width: 50%;
- display: flex;
- justify-content: center;
- align-items: center;
- padding: 5px;
- .state-title {
- color: #ffffffcc;
- flex: 9;
- font-size: 14px;
- .unit {
- // color: #ffffffbb;
- }
- }
- .state-val {
- flex: 1;
- color: #e4a300;
- margin-right: 5px;
- text-align: right;
- font-size: 14px;
- }
- }
- }
- .signal-box {
- margin: 5px 0;
- display: flex;
- align-items: center;
- .signal-title {
- color: #7af5ff;
- margin: 0 5px;
- }
- &:last-child {
- margin-right: 0px;
- }
- }
- .list-item {
- padding: 0 10px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .item-data-key {
- color: #ffffff99;
- }
- }
- .item-data-box {
- color: #fff;
- .state-icon {
- display: inline-block;
- width: 12px;
- height: 12px;
- border-radius: 12px;
- }
- .open {
- border: 5px solid #133a56;
- background: #4ecb73;
- }
- .close {
- border: 5px solid #192961;
- background: #6d7898;
- }
- }
- }
- .right-box {
- width: 330px;
- margin-top: 60px;
- .control-group {
- display: flex;
- // justify-content: space-around;
- flex-wrap: wrap;
- .control-item {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 0 4px;
- .control-item-title {
- color: #a6dce9;
- position: relative;
- top: 5px;
- }
- .control-item-state {
- width: 94px;
- height: 47px;
- background: url('/@/assets/images/vent/control-switch-bg.png');
- display: flex;
- justify-content: center;
- align-items: center;
- color: #fff;
- }
- .button-box {
- position: relative;
- padding: 5px;
- border: 1px transparent solid;
- background-clip: border-box;
- border-radius: 5px;
- margin-left: 8px;
- }
- .a-button {
- pointer-events: auto;
- }
- &::v-deep .a-button--mini {
- padding: 6px 10px;
- }
- &::v-deep .a-button--mini.is-round {
- padding: 6px 10px;
- }
- }
- }
- .control-btn-group {
- width: 100%;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- .control-left-box {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- padding: 0 20px;
- .btn-box {
- width: 100px;
- color: #fff;
- display: flex;
- justify-content: space-between;
- span {
- display: inline-block;
- padding: 2px 8px;
- background: #007099;
- border-radius: 4px;
- border: 1px solid rgb(125, 230, 249);
- cursor: pointer;
- &:hover {
- background: #005574;
- }
- }
- }
- .icon-box {
- width: 60px;
- height: 60px;
- border-radius: 30px;
- border: 2px solid #00bcdd;
- box-shadow: 0 0 20px #ffffff88;
- display: flex;
- justify-content: center;
- align-items: center;
- margin-top: 20px;
- .icon {
- width: 18px;
- height: 18px;
- border-radius: 9px;
- border: 3px solid #d7f9ff;
- position: relative;
- background: #00bcdd;
- &::before {
- position: absolute;
- content: '';
- width: 2px;
- height: 12px;
- background-color: #00bcdd;
- left: 6px;
- top: -16px;
- }
- &::after {
- position: absolute;
- content: '';
- width: 2px;
- height: 12px;
- left: 6px;
- top: 17px;
- background-color: #00d9ff;
- }
- }
- }
- .remote-icon-box {
- transform: rotate(30deg);
- animation: iconRotate 1s linear;
- }
- .remote-icon-box1 {
- transform: rotate(-30deg);
- animation: iconRotate1 1s linear;
- }
- @keyframes iconRotate {
- from {
- transform: rotate(-30deg);
- }
- to {
- transform: rotate(30deg);
- }
- }
- @keyframes iconRotate1 {
- from {
- transform: rotate(30deg);
- }
- to {
- transform: rotate(-30deg);
- }
- }
- }
- .control-right-box {
- width: 100px;
- color: #fff;
- height: 80px;
- justify-content: space-between;
- align-items: center;
- .btn {
- margin-bottom: 30px;
- }
- }
- }
- }
- .left-box {
- height: calc(100%);
- overflow-x: hidden;
- overflow-y: auto;
- pointer-events: auto;
- direction: rtl;
- .item-l {
- width: 335px;
- .monitor-box {
- background-color: #ffffff05;
- }
- }
- .left-container {
- direction: ltr;
- }
- .control-item {
- height: 36px;
- }
- }
- }
- }
- .playerBox {
- z-index: 9999;
- position: fixed;
- // top: 200px;
- right: 15px;
- width: 100%;
- height: calc(100% - 100px);
- overflow-y: auto;
- margin: auto;
- pointer-events: none;
- display: flex;
- justify-content: end;
- &:deep(#LivePlayerBox) {
- width: auto !important;
- height: auto !important;
- display: flex;
- flex-flow: column;
- justify-content: end;
- }
- }
- .tab-button-box {
- display: inline-block;
- position: relative;
- padding: 5px;
- // border: 1px transparent solid;
- border-radius: 5px;
- margin-left: 8px;
- margin-right: 8px;
- width: auto;
- // height: 40px;
- // border: 1px solid #65dbea;
- height: 35px !important;
- display: flex;
- align-items: center;
- justify-content: center;
- color: #fff;
- padding: 0 15px 5px 15px;
- cursor: pointer;
- &:hover {
- background: linear-gradient(#2cd1ff55, #1eb0ff55);
- }
- &::before {
- width: calc(100% - 6px);
- height: 27px;
- content: '';
- position: absolute;
- top: 3px;
- right: 0;
- left: 3px;
- bottom: 0;
- z-index: -1;
- border-radius: inherit; /*important*/
- background: linear-gradient(#1fa6cb, #127cb5);
- }
- &::after {
- width: calc(100% + 32px);
- height: 10px;
- content: '';
- position: absolute;
- top: 28px;
- right: 0;
- left: -16px;
- bottom: 0;
- z-index: -1;
- border-radius: inherit; /*important*/
- background: url('/@/assets/images/vent/short-light.png') no-repeat;
- background-position: center;
- background-size: 100%;
- z-index: 999;
- }
- }
- .tab-button-box-active {
- border: 1px solid #66989e !important;
- &:hover {
- background: none !important;
- }
- &::before {
- background: linear-gradient(#1fa6cbcc, #127cb5cc) !important;
- }
- }
- }
- .btn {
- padding: 2px 12px;
- position: relative;
- border-radius: 2px;
- color: #fff;
- cursor: pointer;
- &::before {
- position: absolute;
- display: block;
- content: '';
- width: calc(100% - 4px);
- height: calc(100% - 4px);
- top: 2px;
- left: 2px;
- border-radius: 2px;
- z-index: -1;
- }
- }
- .btn1 {
- border: 1px solid #5cfaff;
- &::before {
- background-image: linear-gradient(#2effee92, #0cb1d592);
- }
- &:hover {
- border: 1px solid #5cfaffaa;
- &::before {
- background-image: linear-gradient(#2effee72, #0cb1d572);
- }
- }
- }
- .btn2 {
- border: 1px solid #e91927;
- margin-left: 10px;
- &::before {
- background-image: linear-gradient(#b02533, #a31f2e);
- }
- &:hover {
- &::before {
- background-image: linear-gradient(#bd2e3ccc, #a31f2ecc);
- }
- }
- }
- </style>
|