From b0bf96e2529c41c34465ce3acceb6dd8d08d16c0 Mon Sep 17 00:00:00 2001
From: lzhe <181968431@qq.com>
Date: 星期六, 02 十一月 2024 22:17:22 +0800
Subject: [PATCH] 1
---
src/views/mdc/realtime-status/index.vue | 654 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 files changed, 642 insertions(+), 12 deletions(-)
diff --git a/src/views/mdc/realtime-status/index.vue b/src/views/mdc/realtime-status/index.vue
index ed15ce9..fd7c5cd 100644
--- a/src/views/mdc/realtime-status/index.vue
+++ b/src/views/mdc/realtime-status/index.vue
@@ -1,24 +1,654 @@
<!--
* @Date: 2024-04-09 22:11:21
- * @LastEditors: Sneed
- * @LastEditTime: 2024-04-09 22:12:14
- * @FilePath: /belleson-frontend/Users/mache/Documents/demo/cps-web/src/views/mdc/realtime-status/index.vue
+ * @LastEditors: lzhe lzhe@example.com
+ * @LastEditTime: 2024-10-31 17:27:54
+ * @FilePath: /cps-web/src/views/mdc/realtime-status/index.vue
瀹炴椂鐪嬫澘
-->
<template>
- <el-main>
- <el-card shadow="never">
- 鏁堢巼鍒嗘瀽
- </el-card>
- </el-main>
+ <div class="realtime-main">
+ <div>
+ <el-radio-group v-model="station" @change="changestatus">
+ <el-radio-button label="鐘舵�佽鍥�" value="鐘舵�佽鍥�" />
+ <el-radio-button label="鏍囩瑙嗗浘" value="鏍囩瑙嗗浘" />
+ </el-radio-group>
+ <span class="setSpan">
+ <el-icon class="setIcon">
+ <Setting />
+ </el-icon>
+ <span class="setBtn" @click="goSet">鍒嗘瀽璁剧疆</span>
+ </span>
+ </div>
+ <ul class="status-view-box" v-if="station == '鐘舵�佽鍥�'">
+ <li v-for="(item, index) in devicestatus" @click="searchstatus(item, index)"
+ :class="{ 'active': item.active }">
+ <el-icon :style="{ 'color': item.color }">
+ <component :is='item.icon'></component>
+ </el-icon>
+ <span>{{ item.statusName }}</span>
+ <span class="view-box-num">{{ item.deviceNum }}</span>
+ </li>
+ </ul>
+ <el-radio-group v-model="stationlabel" @change="changestationlabel" v-if="station == '鏍囩瑙嗗浘'"
+ style="margin-top:8px;">
+ <el-radio-button v-for="item in stationlabelList" :label="item.groupName" :value="item.groupId" />
+ </el-radio-group>
+ <div class="status-content-cardBox">
+ <div class="status-prev" @click="prev">
+ <el-icon>
+ <ArrowLeft />
+ </el-icon>
+ </div>
+ <div class="status-next" @click="next">
+ <el-icon>
+ <ArrowRight />
+ </el-icon>
+ </div>
+ <div class="status-content-cardp" v-for="(item, index) in timestatus"
+ :style="{ 'width': (100 / column) + '%' }">
+ <div class="status-card-box" style="border-color: #ccc;">
+ <div class="status-card-top">
+ <div class="status-card-detail">
+ <div class="status-card-detail-name" :title="item.name">{{ item.name }}</div>
+ <div class="status-card-detail-status">
+ <div class="status-card-detail-point" :style="{ 'background-color': item.statusStyle }">
+ </div>{{ item.statusName }}
+ <div class="status-card-detail-time" :style="{ 'color': item.statusStyle }">{{ item.time }}
+ </div>
+ </div>
+ </div>
+ <div class="status-card-machine" style="border-color: #ccc;">
+ <div class="status-card-machine-img">
+ <img :src="item.avatar" width="68" height="68">
+
+ </div>
+ <div class="status-card-machine-mesg">
+ <div class="status-card-machine-mesg-form">
+ <div class="status-card-machine-mesg-label">宸ヤ綅缂栧彿</div>
+ <div class="status-card-machine-mesg-value">{{ item.code }}</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <div class="status-card-bottom">
+ <div class="status-card-bottom-realtime" @click="showvisible(item, index)"><i
+ class="iconfont saber-xiangqing status-card-bottom-icon"></i> 瀹炴椂鏁版嵁</div>
+ <div class="status-card-bottom-detail" @click="gostatus(item)"><i
+ class="iconfont saber-shuju status-card-bottom-icon"></i> 宸ヤ綅璇︽儏</div>
+ </div>
+ </div>
+ </div>
+ </div>
+ <el-dialog :title="titleMap" v-model="visible" :width="740">
+ <div class="dialogstyle">
+ <el-table :data="timestatus[clickIndex].properties" style="width: 100%" border>
+ <el-table-column prop="name" label="鏁版嵁鐐�"></el-table-column>
+ <el-table-column prop="code" label="鍊�"></el-table-column>
+ <el-table-column prop="moment" label="閲囬泦鏃堕棿"></el-table-column>
+ </el-table>
+ </div>
+ </el-dialog>
+ </div>
</template>
<script>
- export default {
-
- }
+import station from "./station1.jpg";
+import moment from 'moment';
+import * as ElementPlusIconsVue from '@element-plus/icons-vue'
+let icons = []
+for (const [key, component] of Object.entries(ElementPlusIconsVue)) {
+ icons.push(key)
+}
+export default {
+ components: {
+ ...ElementPlusIconsVue
+ },
+ data() {
+ return {
+ station: station,
+ clickIndex: 0,
+ allwcs: [],
+ statusStyle: "#ccc",
+ titleMap: "",
+ visible: false,
+ visibleList: [],
+ devicestatus: [],
+ timestatus: [],
+ station: "鐘舵�佽鍥�",
+ stationlabel: "",
+ stationlabelList: [],
+ current: "1",
+ size: "9",
+ total: 0,
+ workStationGroupIdList: [],
+ line: "",
+ column: ""
+ }
+ },
+ mounted() {
+ this.deviceStatus = this.$route.query.currentTag ? [...this.$route.query.currentTag] : [];
+ this.getstationlabelList(); //鑾峰彇鏍囩瑙嗗浘涓嬬殑list
+ this.getprocess(); //鑾峰彇棰滆壊==銆嬭幏鍙栭《閮╰itle==銆嬭缃嚑琛屽嚑鍒�==銆媤s
+ },
+ methods: {
+ getSetting() {
+ this.$HTTP.get(`/api/blade-system/param/detail?paramKey=mdc.realtime.setting`).then(res => {
+ if (res.code == 200) {
+ var paramValue = JSON.parse(res.data.paramValue);
+ this.line = paramValue.line == 0 ? 1 : paramValue.line;
+ this.column = paramValue.column;
+ this.current = "1";
+ this.size = this.line * this.column;
+ this.gettimestatus(); //ws
+ }
+ })
+ },
+ changestationlabel(name) {
+ this.stationlabel = name;
+ this.stationlabelList.forEach(item => {
+ if (item.groupName == name) {
+ this.workStationGroupIdList = [item.groupId];
+ }
+ })
+ this.gettimestatus(); //鏌ヨ鍒楄〃
+ },
+ getstationlabelList() {
+ this.$HTTP.get("/api/smis/group/get-mdc-group").then(res => {
+ if (res.code == 200) {
+ this.stationlabelList = res.data;
+ if (res.data.length != 0) {
+ this.stationlabel = res.data[0].groupName;
+ }
+ }
+ })
+ },
+ changestatus(name) {
+ if (this.stationlabelList.length == 0) {
+ this.station = "鐘舵�佽鍥�";
+ this.$message.error('鏈�夊畾瀹炴椂鐪嬫澘鏌ヨ缁勶紝璇峰埌"鍒嗘瀽璁剧疆 -> 瀹炴椂鐪嬫澘鏌ヨ缁勮缃�"涓�夋嫨宸ヤ綅缁�');
+ return;
+ }
+ this.station = name;
+ if (this.station == '鐘舵�佽鍥�') {
+ this.workStationGroupIdList = [];
+ } else {
+ this.stationlabel = this.stationlabelList[0].groupName;
+ this.workStationGroupIdList = [this.stationlabelList[0].groupId];
+ }
+ this.gettimestatus(); //鏌ヨ鍒楄〃
+ },
+ showvisible(item, index) {
+ if(item.properties.length == 0) {
+ this.$message({
+ message: '璇ュ伐浣嶆病鏈夐厤缃暟鎹偣',
+ type: 'warning'
+ });
+ return;
+ }
+ this.clickIndex = index;
+ this.visible = true;
+ },
+ searchstatus(item, index) {
+ this.devicestatus.forEach(item => {
+ item.active = false;
+ })
+ this.devicestatus[index].active = true;
+ this.deviceStatus = [item.status];
+ this.gettimestatus();
+ },
+ prev() {
+ if (this.current == "1") return;
+ this.current = this.current - 1;
+ this.gettimestatus();
+ },
+ next() {
+ if ((this.current * this.line) < this.total / this.column) {
+ this.current = Number(this.current) + 1;
+ this.gettimestatus();
+ }
+ },
+ goSet() {
+ this.$router.push('/mdc/configuration?isShowSearch=1'); //鍒嗘瀽璁剧疆
+ },
+ gostatus(item) {
+ this.$router.push('/mdc/station-live?code=' + item.id);
+ },
+ getprocess() { //棰滆壊鐘舵��
+ this.$HTTP.get(`/api/smis/global_wcs/list?code=&name=`).then(res => {
+ if (res.code == 200) {
+ this.allwcs = res.data;
+ this.getdevicestatus(); //鑾峰彇椤堕儴title/鍏蜂綋鏁版嵁
+ this.getSetting(); //鑾峰彇鍑犺鍑犲垪
+ }
+ })
+ },
+ changeTime(time,diffTime) {
+ // 浣跨敤Moment.js瑙f瀽杩欎袱涓棩鏈熷瓧绗︿覆
+ var date1 = moment(time);
+ var date2 = moment(diffTime);
+ // 璁$畻涓や釜鏃ユ湡涔嬮棿鐨勫樊寮傦紙姣锛�
+ var differenceInMilliseconds = date1.diff(date2); // 娉ㄦ剰锛歞ate1 - date2 缁欏嚭姝f暟宸紓
+ // 浣跨敤duration瀵硅薄灏嗗樊寮傝浆鎹负鏇存槗浜庡鐞嗙殑鍗曚綅
+ var duration = moment.duration(differenceInMilliseconds);
+ // 鎻愬彇澶╂暟銆佸皬鏃舵暟銆佸垎閽熸暟鍜岀鏁�
+ var differenceInDays = duration.asDays();
+ var differenceInHours = duration.hours(); // 鐩存帴浣跨敤hours()鏂规硶鑾峰彇灏忔椂鏁�
+ var differenceInMinutes = duration.minutes(); // 鐩存帴浣跨敤minutes()鏂规硶鑾峰彇鍒嗛挓鏁�
+ var differenceInSeconds = duration.seconds(); // 鐩存帴浣跨敤seconds()鏂规硶鑾峰彇绉掓暟
+ // 杈撳嚭缁撴灉锛堜娇鐢∕ath.floor纭繚鏁存暟锛�
+ return Math.floor(differenceInDays) + "澶�" + Math.floor(differenceInHours) + "鏃�" + Math.floor(differenceInMinutes) + "鍒�" + Math.floor(differenceInSeconds) + "绉�";
+ },
+ gettimestatus() {
+ var that = this;
+ var obj = {
+ deviceStatus: this.deviceStatus,
+ workStationGroupIdList: this.workStationGroupIdList
+ }
+ this.timestatus = [];
+ this.$HTTP.post(`/api/smis/workstation/real-time-status?current=${this.current || 0}&size=${this.size || 6}`, obj).then(res => {
+ if (res.code == 200) {
+ var ids = [];
+ res.data.records.forEach(item => {
+ if(item.avatar == "") {
+ item.avatar = station;
+ }
+ ids.push(item.id);
+ })
+ this.timestatus = res.data.records;
+ this.total = res.data.total;
+ //鍙戦�亀ebsocket
+ var obj = {
+ type: "realTimeData",
+ workstationIdList: ids
+ }
+ if (this.$TOOL.socket.websocket == null) { //娌℃湁寤虹珛鍏堝缓绔�
+ this.$TOOL.socket.connectToWebSocket(this.$TOOL.cookie.get("TOKEN"));
+ }
+ var intervalId123 = setInterval(function () {
+ if (that.$TOOL.socket.websocket.readyState == 1) {
+ clearInterval(intervalId123);
+ that.$TOOL.socket.sendDataToWebSocket(obj); //鍙戦��
+ }
+ }, 500);
+ this.$TOOL.socket.websocket.onmessage = function (event) {
+ var eventData = JSON.parse(event.data);
+ if (that.timestatus.length == 0) return; //娌″�间笉鐢ㄥ惊鐜�
+ that.timestatus.forEach((item, index) => { //绗竴姝ユ妸v鏀惧埌code閲�
+ if (eventData.id == item.id) {
+ if (item.properties == null) {
+ item.properties = [];
+ return;
+ }
+ if (eventData.data.DeviceStatus) {
+ var time = moment(eventData.data.DeviceStatus.t).format('YYYY-MM-DD HH:mm:ss');
+ var preT = moment(eventData.data.DeviceStatus.preT).format('YYYY-MM-DD HH:mm:ss');
+ var diffTime = that.changeTime(time,preT); //杞崲鎴愬樊鍊硷紙鏃跺垎绉掞級
+ var diffTime = diffTime;
+ item.time = diffTime;
+ that.allwcs.forEach(item1 => {
+ if (item1.code == eventData.data.DeviceStatus.v) {
+ item.statusName = item1.name;
+ item.statusStyle = item1.color;
+ }
+ })
+ } else {
+ if (item.time == undefined || item.time == "--") {
+ item.time = "--";
+ item.statusName = "鏈煡";
+ item.statusStyle = '#ccc';
+ }
+ }
+ item.properties.forEach((item1, index1) => {
+ if (item1.key == "DeviceStatus") { //鏈哄櫒鐘舵��
+ that.allwcs.forEach(item2 => {
+ if(eventData.data.DeviceStatus && item2.code == eventData.data.DeviceStatus.v) {
+ item1.value = item2.code;
+ item1.code = item2.name;
+ item1.moment = that.timestampChangeTime(eventData.data[item1.key].t); //鏃堕棿鎴宠浆鍖栨垚鏃ユ湡
+ }
+ })
+ if (Object.keys(eventData.data).length == 0) { //ws娌℃湁data鏁版嵁锛岀粰榛樿鍊�
+ item1.code = "";
+ item1.moment = "";
+ };
+ } else {
+ if(eventData.data[item1.key]) {
+ if(item1.key == "Alarm") {
+ var vJson = JSON.parse(eventData.data[item1.key].v);
+ item1.code = vJson[0];
+ }else {
+ item1.code = eventData.data[item1.key].v;
+ }
+ item1.moment = that.timestampChangeTime(eventData.data[item1.key].t); //鏃堕棿鎴宠浆鍖栨垚鏃ユ湡
+ }else {
+ item1.code = "";
+ item1.moment = "";
+ }
+ }
+
+ })
+ }
+ });
+ };
+ }
+ })
+ },
+ timestampChangeTime(timestamp) { //鏃堕棿鎴宠浆鎹㈡垚鏃堕棿
+ var date = new Date(timestamp);
+ //鎻愬彇骞存湀鏃ュ皬鏃跺垎閽熺
+ var year = date.getFullYear();
+ var month = date.getMonth() + 1; // 鏈堜唤浠�0寮�濮嬶紝鎵�浠ヨ鍔�1
+ var day = date.getDate();
+ var hours = date.getHours();
+ var minutes = date.getMinutes();
+ var seconds = date.getSeconds();
+ // 鏍煎紡鍖栨棩鏈熷瓧绗︿覆
+ var formattedDate = `${year}-${month < 10 ? '0' : ''}${month}-${day < 10 ? '0' : ''}${day} ${hours < 10 ? '0' : ''}${hours}:${minutes < 10 ? '0' : ''}${minutes}:${seconds < 10 ? '0' : ''}${seconds}`;
+ return formattedDate;
+ },
+ getdevicestatus() {
+ this.$HTTP.get(`/api/mdc/work-station-analysis/device-status-statistics`).then(res => {
+ if (res.code == 200) {
+ res.data.forEach(item => {
+ item.active = false;
+ this.allwcs.forEach(item1 => {
+ if (item.status == item1.code) {
+ item.color = item1.color;
+ }
+ })
+ if (this.$route.query.currentTag == item.status) {
+ item.active = true;
+ }
+ })
+ res.data[0].icon = "Position";
+ res.data[1].icon = "Loading";
+ res.data[2].icon = "Clock";
+ res.data[3].icon = "Warning";
+ res.data[4].icon = "Odometer";
+ this.devicestatus = res.data;
+ }
+ })
+ }
+ },
+}
</script>
-<style lang="scss" scoped>
+<style scoped>
+.realtime-main {
+ background-color: #fff;
+ margin: 8px;
+ padding: 8px;
+}
+.setSpan {
+ vertical-align: sub;
+ font-size: 14px;
+}
+
+.setBtn {
+ margin-left: 2px;
+ color: #409eff;
+ margin-left: 8px;
+ cursor: pointer;
+}
+
+.setIcon {
+ color: #409eff;
+ margin-left: 15px;
+ vertical-align: -2px;
+}
+
+.status-view-box {
+ display: flex;
+ padding: 8px 0 0;
+}
+
+.status-view-box li {
+ list-style: none;
+ border-radius: 2px;
+ background: #f6f6f6;
+ cursor: pointer;
+ padding: 13px 37px 13px 17px;
+ margin: 0 8px;
+ flex-direction: row;
+ display: flex;
+ align-items: center;
+}
+
+.status-view-box li i {
+ margin-right: 6px;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.view-box-num {
+ font-size: 25px;
+ margin-left: 6px;
+}
+
+.status-content-cardBox {
+ display: flex;
+ flex-direction: row;
+ -ms-flex-wrap: wrap;
+ flex-wrap: wrap;
+ align-items: flex-start;
+ justify-content: flex-start;
+ align-content: flex-start;
+ height: 100%;
+ width: 100%;
+ padding: 4px;
+ box-sizing: border-box;
+ position: relative;
+}
+
+.status-content-cardBox:hover .status-next,
+.status-content-cardBox:hover .status-prev {
+ display: block;
+}
+
+.status-content-cardp {
+ height: 50%;
+ min-height: 170px;
+ margin: 0;
+ padding: 4px;
+ box-sizing: border-box;
+}
+
+.status-card-box {
+ height: 100%;
+ border: 1px solid;
+ font-size: 14px;
+ box-sizing: border-box;
+ border-radius: 2px;
+}
+
+.status-card-top {
+ height: calc(100% - 45px);
+ padding: 12px;
+ box-sizing: border-box;
+}
+
+.status-card-detail {
+ display: flex;
+ align-items: center;
+ justify-content: space-between;
+}
+
+.status-card-detail-name {
+ font-weight: 700;
+ font-size: 16px;
+ color: #333;
+ max-width: 37%;
+ overflow: hidden;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}
+
+.status-card-detail-status {
+ display: flex;
+ align-items: center;
+ justify-content: flex-end;
+}
+
+.status-card-detail-point {
+ width: 12px;
+ height: 12px;
+ border-radius: 6px;
+ margin-right: 2px;
+}
+
+.status-card-detail-time {
+ line-height: 12px;
+ margin-left: 2px;
+}
+
+.status-card-machine {
+ display: -webkit-box;
+ display: -ms-flexbox;
+ display: flex;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
+ align-items: center;
+ -webkit-box-pack: start;
+ -ms-flex-pack: start;
+ justify-content: flex-start;
+ padding-top: 12px;
+}
+
+.status-card-machine-img {
+ width: 68px;
+ height: 68px;
+ border-radius: 2px;
+}
+
+.status-card-machine-mesg {
+ padding-left: 16px;
+}
+
+.status-card-machine-mesg-form {
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+ padding: 8px 0;
+}
+
+.status-card-machine-mesg-label {
+ font-weight: 400;
+ font-size: 12px;
+ text-align: left;
+ color: #666;
+ width: 70px;
+}
+
+.status-card-machine-mesg-value {
+ font-weight: 400;
+ font-size: 12px;
+ text-align: left;
+ color: #333;
+}
+
+.status-card-bottom {
+ font-weight: 700;
+ font-size: 14px;
+ color: #409eff;
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+ border-top: 1px solid #e1e1e2;
+ padding: 12px 0;
+}
+
+.status-card-bottom-realtime {
+ width: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+}
+
+.status-card-bottom-detail,
+.status-card-bottom-realtime {
+ width: 50%;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ cursor: pointer;
+}
+
+.status-card-bottom-icon {
+ margin-right: 8px;
+}
+
+.status-next,
+.status-prev {
+ position: absolute;
+ top: 50%;
+ font-size: 36px;
+ font-weight: 700;
+ width: 48px;
+ height: 48px;
+ text-align: center;
+ line-height: 48px;
+ background: hsla(0, 0%, 100%, .7);
+ border-radius: 2px;
+ cursor: pointer;
+ display: none;
+ z-index: 99;
+}
+
+.status-next {
+ right: 0;
+}
+
+.status-prev {
+ left: 0;
+}
+
+.active {
+ border: 1px solid #317d7b !important
+}
+
+.realtime-analysis-card {
+ border-radius: 2px;
+ margin: 8px;
+ height: 88px;
+ display: flex;
+}
+
+.realtime-analysis-card .card-name,
+.realtime-analysis-card .card-value {
+ display: flex;
+ align-items: center;
+}
+
+.realtime-analysis-card .card-name {
+ width: 98px;
+ height: 88px;
+ justify-content: center;
+ color: #fff;
+}
+
+.realtime-analysis-card .card-value {
+ min-width: 118px;
+ max-width: 396px;
+ height: 100%;
+ padding: 0 8px;
+ overflow: hidden;
+ word-break: break-all;
+ box-sizing: border-box;
+}
+
+.dialogstyle {
+ display: flex;
+ width: 100%;
+ flex-wrap: wrap;
+}
+
+.card-value-bg1 {
+ background-color: rgba(115, 209, 61, 0.14);
+}
+
+.card-value-bg2 {
+ background-color: rgba(55, 12, 13, 0.14);
+}
</style>
\ No newline at end of file
--
Gitblit v1.9.3