123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836 |
- <template>
- <div>{{ Math.random() }}</div>
- <div id="nitrogen3D" style="width: 100%; height: 100%; position: absolute; overflow: hidden"></div>
- <div
- id="nitrogenCss3D"
- class="threejs-Object-CSS"
- style="width: 100%; height: 100%; position: absolute; pointer-events: none; overflow: hidden; z-index: 2; top: 0px; left: 0px"
- >
- <a-spin :spinning="loading" />
- <div v-for="groupNum in monitorDataGroupNum" :key="groupNum" class="modal-monitor">
- <fourBorderBg :class="`kyj${groupNum}`" :id="`nitrogenMonitor${groupNum}`">
- <div class="title">{{ monitorData[groupNum - 1]['strname'] }} </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[groupNum - 1][preMonitor.code] ? formatNum(monitorData[groupNum - 1][preMonitor.code]) : '-' }}</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
- v-if="signal.isFault !== -1"
- :class="{
- 'signal-round': true,
- 'signal-round-run': !signal.isFault && monitorData[groupNum - 1][preMonitor.code] == '1',
- 'signal-round-warning': signal.isFault && monitorData[groupNum - 1][preMonitor.code] == '1',
- 'signal-round-gry': monitorData[groupNum - 1][preMonitor.code] != '1',
- }"
- ></span>
- <span style="display: inline-block; width: 30px; text-align: center" v-else>{{
- monitorData[groupNum - 1][preMonitor.code] == '1' ? '加载' : monitorData[groupNum - 1][preMonitor.code] == '2' ? '卸载' : '-'
- }}</span>
- </div>
- </div>
- </template>
- </fourBorderBg>
- </div>
- </div>
- <div class="nitrogen-home">
- <div class="nitrogen-container">
- <div v-if="monitorNetStatus == 0" class="device-state">网络断开</div>
- <div class="top-box">
- <!-- 底部区域故障数据 -->
- <div class="footer-item-box">
- <div class="device-detail">
- <div class="device-title"> </div>
- <div v-for="groupNum in monitorDataGroupNum" :key="groupNum" class="device-title">
- {{ monitorData[groupNum - 1]['strname'] }}
- </div>
- <!-- <div class="device-val">故障</div> -->
- </div>
- <div v-for="(device, key) in deviceFault" class="device-detail" :key="key">
- <div class="device-title">{{ device.title }}</div>
- <div v-for="groupNum in monitorDataGroupNum" :key="groupNum" class="device-val">
- <span :style="{ color: monitorData[groupNum - 1][device.code] != '1' ? '#BFBFBF' : '#10BC79' }">{{
- monitorData[groupNum - 1][device.code] == '0' ? '正常' : monitorData[groupNum - 1][device.code] == '1' ? '故障' : '-'
- }}</span>
- </div>
- </div>
- </div>
- <!-- 左边监测数据 -->
- <div class="lr-box left-box">
- <div class="item item-l" v-for="groupNum in monitorDataGroupNum" :key="groupNum">
- <ventBox1>
- <template #title>
- <div>{{ monitorData[groupNum - 1]['strname'] }}</div>
- </template>
- <template #container>
- <div class="monitor-box">
- <!-- <div class="parameter-title group-parameter-title">
- <SvgIcon class="icon" size="38" name="device-group-paramer" /><span>机组参数</span>
- </div> -->
- <div class="monitor-item">
- <div class="state-item" v-for="(preFan, index) in preFanMonitorData" :key="index">
- <div class="state-title">{{ preFan.title + (preFan.unit !== 'signal' ? `(${preFan.unit})` : '') }}</div>
- <div v-if="preFan.unit !== 'signal'" class="state-val">{{
- monitorData[groupNum - 1][preFan.code] >= 0 ? formatNum(Number(monitorData[groupNum - 1][preFan.code])) : '-'
- }}</div>
- <div
- v-else
- :class="{
- 'signal-round': true,
- 'signal-round-warning': monitorData[groupNum - 1][preFan.code] == '1',
- 'signal-round-gry': monitorData[groupNum - 1][preFan.code] != '1',
- }"
- ></div>
- </div>
- </div>
- </div>
- </template>
- </ventBox1>
- </div>
- </div>
- <!-- 右边控制状态 -->
- <div class="lr-box right-box">
- <ventBox1 class="vent-margin-t-10">
- <template #title>
- <div>设备实时监测曲线</div>
- </template>
- <template #container>
- <BarAndLine
- v-if="chartsColumns.length > 0"
- xAxisPropType="readTime"
- :dataSource="echartData"
- height="340px"
- :chartsColumns="chartsColumns"
- :option="echatsOption"
- />
- <!-- :option="zhudanOption" -->
- </template>
- </ventBox1>
- </div>
- </div>
- </div>
- </div>
- <HandleModal :modal-is-show="modalIsShow" :modal-title="modalTitle" :modal-type="modalType" @handle-ok="handleOK" @handle-cancel="handleCancel" />
- </template>
- <script lang="ts" setup name="nitrogenHome">
- import { onMounted, onUnmounted, ref, watch, reactive, defineProps, nextTick, inject, computed } from 'vue';
- import ventBox1 from '/@/components/vent/ventBox1.vue';
- import fourBorderBg from '../../../comment/components/fourBorderBg.vue';
- import { mountedThree, destroy, setModelType, addText } from '../nitrogen.threejs';
- import { getDevice } from '../nitrogen.api';
- import { SvgIcon } from '/@/components/Icon';
- import BarAndLine from '/@/components/chart/BarAndLine.vue';
- import HandleModal from './modal.vue';
- import { deviceControlApi } from '/@/api/vent/index';
- import { preMonitorList, preFanMonitorData, deviceFault } from '../nitrogen.data.blt';
- import { message } from 'ant-design-vue';
- import lodash from 'lodash';
- import { formatNum } from '/@/utils/ventutil';
- import { getTableHeaderColumns } from '/@/hooks/web/useWebColumns';
- const globalConfig = inject('globalConfig');
- const props = defineProps({
- deviceId: {
- type: String,
- require: true,
- },
- modalType: {
- type: String,
- require: true,
- },
- });
- const refresh = ref(false);
- const modalTitle = ref(''); // 模态框标题显示内容,根据设备操作类型决定
- const modalType = ref(''); // 模态框内容显示类型,设备操作类型
- const modalIsShow = ref<boolean>(false); // 是否显示模态框
- const loading = ref(true);
- let kzParam = reactive<any>({
- data: {},
- isFw: null,
- });
- // const kyjs = ['1号空压机', '1号空压机', '1号空压机', '1号空压机'];
- const flvURL1 = () => {
- // return `https://sf1-hscdn-tos.pstatp.com/obj/media-fe/xgplayer_doc_video/flv/xgplayer-demo-360p.flv`;
- return '';
- };
- const colors = ['#FDB146', '#EE6666', '#9BCB75', '#03C2EC', '#DA3914', '#9C83D9'];
- const echatsOption = {
- grid: {
- top: '35%',
- left: '15%',
- right: '20px',
- bottom: '8%',
- // containLabel: true
- },
- toolbox: {
- feature: {},
- },
- };
- const monitorNetStatus = ref(0);
- const monitorDataGroupNum = ref(0);
- let airCompressorState = reactive<any[]>([]);
- const chartsColumns = ref(getTableHeaderColumns('sys_nitrogen_chart'));
- // const propTypeArr = ref([])
- // watch(monitorDataGroupNum, () => {
- // const arr = <any[]>[]
- // const item = getTableHeaderColumns('sys_nitrogen_chart')
- // const propTypeList = []
- // for (let i = 1; i <= monitorDataGroupNum.value; i++) {
- // const lineType = lodash.cloneDeep(item[0])
- // lineType.legend = `制氮机${i}瞬时流量`;
- // lineType.dataIndex = `${item[0].dataIndex}${i}`
- // lineType.color = colors[i - 1]
- // arr.push(lineType)
- // }
- // chartsColumns.value = arr
- // })
- const monitorData = ref(
- new Array(3).fill({
- // strName: '空压机',
- // cumulativeFlow: '-',
- // centerTemperature: '-',
- // outletTemperature: '-',
- // Ia: '-',
- // Ib: '-',
- // Ic: '-',
- // Vab: '-',
- // Vac: '-',
- // Vbc: '-',
- // compressGroupName: '',
- // compressExhaustPressF1: '-',
- // compressSeparatePressF1: '-',
- // compressHostTempF1: '-',
- // compressCrewTempF1: '-',
- // compressRunTimeF1: '-',
- // controlModel: 'LOC'
- })
- );
- //图表数据
- let echartData = ref<any>([]);
- // https获取监测数据
- let timer: null | NodeJS.Timeout = null;
- async function getMonitor(flag?) {
- if (Object.prototype.toString.call(timer) === '[object Null]') {
- timer = await setTimeout(
- async () => {
- if (props.deviceId) {
- await getDataSource(props.deviceId, flag);
- }
- if (timer) {
- timer = null;
- }
- await getMonitor();
- },
- flag ? 0 : 3000
- );
- }
- }
- async function getDataSource(systemID, flag?) {
- const res = await getDevice({ devicetype: 'sys', systemID, type: 'all' });
- console.log(res, 'res---------------');
- if (res) {
- const result = res;
- if (!result || result.msgTxt.length < 1) return;
- result.msgTxt.forEach((item) => {
- if (item.type && item.type.startsWith('nitrogen')) {
- airCompressorState.length = 0;
- let netStatus = 0;
- monitorData.value = item['datalist'].filter((data) => {
- const readData = data.readData;
- if (data['netStatus'] == 1) {
- netStatus = 1;
- }
- airCompressorState.push({
- id: data.deviceID,
- deviceType: data.deviceType,
- HMIReset: readData.HMIReset,
- HMIStartStop: readData.HMIStartStop,
- });
- return Object.assign(data, readData);
- });
- monitorNetStatus.value = netStatus;
- console.log(monitorData, 'monitorData.value---===');
- const airCompressor = { readTime: monitorData.value[0]['readTime'].substring(11) };
- const dataArr = lodash.cloneDeep(echartData.value);
- //图表数据
- if (dataArr.length <= 5) {
- monitorData.value.forEach((el, index) => {
- airCompressor[`InputFlux${index + 1}`] = el['InputFlux'] || 0;
- });
- dataArr.push(airCompressor);
- } else {
- dataArr.shift();
- dataArr.push(airCompressor);
- }
- echartData.value = dataArr;
- }
- });
- if (flag) monitorDataGroupNum.value = monitorData.value.length;
- refresh.value = true;
- nextTick(() => {
- refresh.value = false;
- });
- }
- }
- function handlerDevice(data, bol) {
- // console.log(bol, 'bol-------')
- kzParam.data = data;
- kzParam.isFw = bol;
- // console.log(kzParam, 'kz--------')
- if (bol) {
- modalTitle.value = '一键复位';
- modalType.value = '1';
- modalIsShow.value = true;
- kzParam.data.HMIReset = !data.HMIReset;
- } else {
- modalTitle.value = '一键启停';
- modalType.value = '2';
- modalIsShow.value = true;
- kzParam.data.HMIStartStop = !data.HMIStartStop;
- }
- }
- function handleOK(passWord, handlerState) {
- // console.log(kzParam, 'kz----------');
- // if (passWord !== '123456') {
- // message.warning('密码不正确,请重新输入');
- // return;
- // }
- let data = {};
- if (kzParam.isFw) {
- data = {
- deviceid: kzParam.data.id,
- devicetype: kzParam.data.deviceType,
- password: passWord,
- HMIReset: kzParam.data.HMIReset,
- };
- } else {
- data = {
- deviceid: kzParam.data.id,
- password: passWord,
- devicetype: kzParam.data.deviceType,
- HMIStartStop: kzParam.data.HMIStartStop,
- };
- }
- deviceControlApi(data).then((res) => {
- // 模拟时开启
- if (res.success) {
- modalIsShow.value = false;
- getDataSource(props.deviceId);
- if (globalConfig.History_Type == 'remote') {
- message.success('指令已下发至生产管控平台成功!');
- } else {
- message.success('指令已下发成功!');
- }
- }
- });
- }
- function handleCancel() {
- modalIsShow.value = false;
- modalTitle.value = '';
- modalType.value = '';
- }
- watch([monitorDataGroupNum, loading], ([newMonitorDataGroupNum, newLoading]) => {
- nextTick(() => {
- if (newMonitorDataGroupNum && !newLoading) {
- setModelType(props.modalType, newMonitorDataGroupNum);
- }
- });
- });
- onMounted(async () => {
- await getMonitor(true);
- await mountedThree().then(() => {
- loading.value = false;
- });
- });
- onUnmounted(() => {
- destroy();
- if (timer) {
- clearTimeout(timer);
- timer = undefined;
- }
- });
- </script>
- <style lang="less" scoped>
- @ventSpace: zxm;
- .nitrogen-box {
- width: 100%;
- height: 100%;
- display: flex;
- justify-content: center;
- }
- #nitrogenCss3D {
- .modal-monitor {
- width: 200px;
- position: absolute;
- left: 0px;
- top: 0px;
- }
- &:deep(.win) {
- margin: 0 !important;
- background: #00000044;
- }
- }
- .nitrogen-home {
- width: 100%;
- height: 100%;
- position: fixed;
- z-index: 9999;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- pointer-events: none;
- top: 20px;
- .nitrogen-container {
- width: 100%;
- height: calc(100% - 100px);
- display: flex;
- justify-content: space-between;
- margin-bottom: 100px;
- .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;
- // margin-top: 40px;
- .footer-item-box {
- width: calc(100% - 20px);
- height: auto;
- position: fixed;
- bottom: 130px;
- display: flex;
- justify-content: center;
- color: #fff;
- // box-shadow: 0 0 30px rgb(0, 153, 184) inset;
- pointer-events: auto;
- .device-detail {
- text-align: center;
- &:first-child {
- background-color: #00bbff11;
- }
- &:last-child {
- .device-val,
- .device-title {
- border-right: 1px solid #00baffd4;
- }
- }
- .device-val {
- line-height: 36px;
- border-top: 1px solid #00baffd4;
- border-left: 1px solid #00baffd4;
- &:last-child {
- border-bottom: 1px solid #00baffd4;
- }
- }
- }
- .device-title {
- width: 110px;
- text-align: center;
- border-top: 1px solid #00baffd4;
- border-left: 1px solid #00baffd4;
- line-height: 36px;
- color: #00e5ff;
- background-color: #00bbff21;
- backdrop-filter: blur(5px);
- &:last-child {
- border-bottom: 1px solid #00baffd4;
- }
- }
- }
- .lr-box {
- height: 100%;
- display: flex;
- flex-direction: column;
- position: relative;
- // overflow: hidden;
- z-index: 9999;
- pointer-events: auto;
- overflow-y: auto;
- overflow-x: hidden;
- height: calc(100% - 70px);
- }
- .item {
- width: 285px;
- height: auto;
- position: relative;
- border-radius: 5px;
- margin-top: 10px;
- margin-bottom: 0px;
- pointer-events: auto;
- color: #fff;
- // overflow: hidden;
- &:first-child {
- margin-top: 0px;
- }
- .base-title {
- color: #fff;
- margin-bottom: 8px;
- padding-left: 10px;
- position: relative;
- font-size: 16px;
- &::after {
- content: '';
- position: absolute;
- display: block;
- width: 4px;
- height: 12px;
- top: 7px;
- left: 0px;
- background: #45d3fd;
- border-radius: 4px;
- }
- }
- .monitor-item {
- width: 100%;
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- .state-item {
- width: 50%;
- padding: 5px;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .state-title {
- width: 100px;
- color: #ffffffdd;
- 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;
- }
- }
- }
- .item-l {
- width: 100%;
- .monitor-box {
- width: 100%;
- .parameter-title {
- position: relative;
- width: 100%;
- height: 14px;
- margin-top: 10px;
- .icon,
- span {
- position: absolute;
- top: -10px;
- }
- }
- .group-parameter-title {
- background-image: linear-gradient(to right, #39a3ff50, #39a3ff00);
- .icon {
- left: -12px;
- top: -17px;
- }
- span {
- left: 18px;
- }
- .item-col {
- background-image: linear-gradient(to right, #39a3ff00, #39a3ff10);
- }
- }
- .device-parameter-title {
- background-image: linear-gradient(to right, #3df6ff40, #3df6ff00);
- .icon {
- left: -10px;
- top: -14px;
- }
- span {
- left: 18px;
- }
- .item-col {
- background-image: linear-gradient(to right, #3df6ff10, #3df6ff00);
- }
- }
- }
- }
- .right-box {
- width: 330px;
- margin-top: 50px;
- .control-group {
- display: flex;
- // justify-content: space-around;
- flex-wrap: wrap;
- .control-item {
- width: 50%; //lxh
- 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;
- }
- }
- }
- }
- .left-box {
- width: 335px;
- margin-top: 80px;
- }
- }
- &:deep(.win) {
- width: 100%;
- margin: 0 !important;
- }
- }
- }
- &: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 {
- width: 200px;
- 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;
- }
- }
- }
- }
- :deep(.zxm-radio-wrapper) {
- color: #fff !important;
- }
- </style>
|