Compare commits
5 Commits
9805d29df3
...
1a5749bab2
Author | SHA1 | Date | |
---|---|---|---|
|
1a5749bab2 | ||
|
7e2c6fe665 | ||
|
8d0aa21332 | ||
|
006b875d12 | ||
|
a6e380a64c |
45
src/App.vue
45
src/App.vue
@ -1,46 +1,25 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, computed } from "vue";
|
import { ref, onMounted } from "vue";
|
||||||
import MainPage from "./MainPage.vue";
|
import MainPage from "./MainPage.vue";
|
||||||
import Slider from "./components/Slider.vue";
|
import Slider from "./components/Slider.vue";
|
||||||
import Client from "./utils/ws";
|
import useWebsocket from "./utils/useWebsocket";
|
||||||
import { useWsStore } from "./store";
|
import { useWsStore } from "./store";
|
||||||
|
|
||||||
const store = useWsStore();
|
const store = useWsStore();
|
||||||
|
|
||||||
const url = "ws://192.168.1.101:8082/QbMonitoring/websocket";
|
// use websocket
|
||||||
let urlPath = document.location.pathname;
|
let urlPath = document.location.pathname;
|
||||||
if (urlPath === "/") {
|
if (urlPath === "/") {
|
||||||
urlPath = "/1-1";
|
urlPath = "/1-1";
|
||||||
}
|
}
|
||||||
new Client(
|
useWebsocket(store, urlPath);
|
||||||
{
|
|
||||||
url: url + urlPath,
|
|
||||||
name: urlPath,
|
|
||||||
},
|
|
||||||
(message) => {
|
|
||||||
try {
|
|
||||||
const data = JSON.parse(message.data);
|
|
||||||
console.log("message", JSON.parse(message.data));
|
|
||||||
|
|
||||||
if ("specificationChanges" in data) {
|
// size setting
|
||||||
console.log("[*] setting data1");
|
const size = ref(80);
|
||||||
// 分屏推送1数据
|
onMounted(() => {
|
||||||
store.updateData("1", data);
|
setSize(size.value);
|
||||||
} else if ("deliveryNotification" in data) {
|
});
|
||||||
// 分屏推送3数据
|
|
||||||
console.log("[*] setting data3");
|
|
||||||
store.updateData("3", data);
|
|
||||||
} else {
|
|
||||||
// 分屏推送2数据
|
|
||||||
console.log("[*] setting data2");
|
|
||||||
store.updateData("2", data);
|
|
||||||
}
|
|
||||||
} catch (err) {
|
|
||||||
console.log("[x] 未解析的ws数据: ", err);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
|
// style update
|
||||||
const styles = ref({});
|
const styles = ref({});
|
||||||
function setSize(value) {
|
function setSize(value) {
|
||||||
const v = (value / 100).toFixed(2);
|
const v = (value / 100).toFixed(2);
|
||||||
@ -56,7 +35,7 @@ function setSize(value) {
|
|||||||
<template>
|
<template>
|
||||||
<div id="app-container">
|
<div id="app-container">
|
||||||
<MainPage :style="styles" />
|
<MainPage :style="styles" />
|
||||||
<Slider @size-change="setSize" />
|
<Slider :size="size" @size-change="setSize" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -106,8 +106,8 @@ const props = defineProps({
|
|||||||
}
|
}
|
||||||
|
|
||||||
.container-body {
|
.container-body {
|
||||||
background: #ffffff33;
|
background: #ffffff11;
|
||||||
backdrop-filter: blur(1px);
|
backdrop-filter: blur(2px);
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
}
|
}
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from "vue";
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from "echarts";
|
||||||
import Container from './Base/Container.vue';
|
import Container from "./Base/Container.vue";
|
||||||
import { useWsStore } from '../store'
|
import { useWsStore } from "../store";
|
||||||
|
import charSetup from "./HourChartOptions";
|
||||||
|
|
||||||
const store = useWsStore();
|
const store = useWsStore();
|
||||||
const chartChart = ref(null);
|
const chartChart = ref(null);
|
||||||
|
const chart = ref(null);
|
||||||
// 小时数据
|
// 小时数据
|
||||||
const hourData = ref([]);
|
const hourData = ref([]);
|
||||||
// store.$subscribe((mutation, state) => {
|
// store.$subscribe((mutation, state) => {
|
||||||
@ -19,28 +22,8 @@ const hourData = ref([]);
|
|||||||
// });
|
// });
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
chartChart.value.classList.add('h-full');
|
chartChart.value.classList.add("h-full");
|
||||||
const mc = echarts.init(chartChart.value);
|
chart.value = echarts.init(chartChart.value);
|
||||||
mc.setOption({
|
|
||||||
grid: {
|
|
||||||
top: 24,
|
|
||||||
bottom: 24,
|
|
||||||
left: 24,
|
|
||||||
right: 24,
|
|
||||||
},
|
|
||||||
tooltip: {},
|
|
||||||
xAxis: {
|
|
||||||
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'],
|
|
||||||
},
|
|
||||||
yAxis: {},
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: '销量',
|
|
||||||
type: 'bar',
|
|
||||||
data: [5, 20, 36, 10, 10, 20],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
40
src/components/HourChartOptions.js
Normal file
40
src/components/HourChartOptions.js
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
export const options = {
|
||||||
|
grid: {
|
||||||
|
top: "5%",
|
||||||
|
bottom: "5%",
|
||||||
|
left: "3%",
|
||||||
|
right: "3%",
|
||||||
|
containLabel: true,
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "category",
|
||||||
|
data: [],
|
||||||
|
axisLabel: {
|
||||||
|
fontSize: 24,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
type: "value",
|
||||||
|
axisLabel: {
|
||||||
|
fontSize: 24,
|
||||||
|
},
|
||||||
|
minInterval: 1,
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
data: [],
|
||||||
|
type: "bar",
|
||||||
|
showBackground: true,
|
||||||
|
backgroundStyle: {
|
||||||
|
color: "rgba(180, 180, 180, 0.2)",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function setup(echartInstance, timeArr, dataArr) {
|
||||||
|
const options = { ...options };
|
||||||
|
options.xAxis.data = timeArr;
|
||||||
|
options.series[0].data = dataArr;
|
||||||
|
echartInstance.setOption(options);
|
||||||
|
}
|
@ -1,35 +1,115 @@
|
|||||||
<!-- 货物情况 -->
|
<!-- 实时数据图表 -->
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted } from 'vue';
|
import { ref, onMounted } from "vue";
|
||||||
import * as echarts from 'echarts';
|
import * as echarts from "echarts";
|
||||||
import Container from './Base/Container.vue';
|
import Container from "./Base/Container.vue";
|
||||||
|
import { useWsStore } from "../store";
|
||||||
const cargoChart = ref(null);
|
const cargoChart = ref(null);
|
||||||
|
const chart = ref(null);
|
||||||
|
const options = {
|
||||||
|
color: ["#99D66C", "#5B9BFF"],
|
||||||
|
grid: {
|
||||||
|
top: 72,
|
||||||
|
bottom: 72,
|
||||||
|
left: 112,
|
||||||
|
right: 88,
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: "axis",
|
||||||
|
axisPointer: {
|
||||||
|
type: "shadow",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: "value",
|
||||||
|
position: "top",
|
||||||
|
splitLine: {
|
||||||
|
lineStyle: {
|
||||||
|
type: "dashed",
|
||||||
|
color: "#ccc8",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisLabel: {
|
||||||
|
fontSize: 24,
|
||||||
|
color: "#fff",
|
||||||
|
},
|
||||||
|
minInterval: 1,
|
||||||
|
},
|
||||||
|
yAxis: {
|
||||||
|
type: "category",
|
||||||
|
axisLine: { show: false },
|
||||||
|
axisLabel: { show: false },
|
||||||
|
axisTick: { show: false },
|
||||||
|
splitLine: { show: false },
|
||||||
|
data: ["废片", "阶段成品"],
|
||||||
|
axisLabel: {
|
||||||
|
fontSize: 24,
|
||||||
|
color: "#fff",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
title: [
|
||||||
|
{
|
||||||
|
text: 0 + "片",
|
||||||
|
left: "50%",
|
||||||
|
textAlign: "center",
|
||||||
|
top: "82%",
|
||||||
|
textStyle: {
|
||||||
|
fontSize: 32,
|
||||||
|
color: "#fff",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
text: 0 + "片",
|
||||||
|
left: "50%",
|
||||||
|
textAlign: "center",
|
||||||
|
top: "44%",
|
||||||
|
textStyle: {
|
||||||
|
fontSize: 32,
|
||||||
|
color: "#fff",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: "数量",
|
||||||
|
type: "bar",
|
||||||
|
stack: "Total",
|
||||||
|
showBackground: true,
|
||||||
|
barWidth: "32",
|
||||||
|
colorBy: "data",
|
||||||
|
data: [
|
||||||
|
{ value: 0, label: { fontSize: 28 } },
|
||||||
|
{ value: 0, label: { fontSize: 28 } },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
function updateChartOption(product, scrap) {
|
||||||
|
if (!chart.value) chart.value = echarts.init(cargoChart.value);
|
||||||
|
else {
|
||||||
|
chart.value.dispose();
|
||||||
|
chart.value = echarts.init(cargoChart.value);
|
||||||
|
}
|
||||||
|
options.title[0].text = product + "片";
|
||||||
|
options.title[1].text = scrap + "片";
|
||||||
|
options.series[0].data[0].value = product;
|
||||||
|
options.series[0].data[1].value = scrap;
|
||||||
|
chart.value.setOption(options);
|
||||||
|
}
|
||||||
|
|
||||||
|
const productAmount = ref(0);
|
||||||
|
const scrapAmount = ref(0);
|
||||||
|
const store = useWsStore();
|
||||||
|
store.$subscribe((mutation, state) => {
|
||||||
|
productAmount.value = state.data1.realTimeData?.product || 0;
|
||||||
|
scrapAmount.value = state.data1.realTimeData?.scrap || 0;
|
||||||
|
updateChartOption(productAmount.value, scrapAmount.value);
|
||||||
|
});
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
cargoChart.value.classList.add('h-full');
|
cargoChart.value.classList.add("h-full");
|
||||||
const mc = echarts.init(cargoChart.value);
|
updateChartOption(productAmount.value, scrapAmount.value);
|
||||||
mc.setOption({
|
|
||||||
grid: {
|
|
||||||
top: 24,
|
|
||||||
bottom: 24,
|
|
||||||
left: 24,
|
|
||||||
right: 24,
|
|
||||||
},
|
|
||||||
tooltip: {},
|
|
||||||
xAxis: {
|
|
||||||
data: ['衬衫', '羊毛衫', '雪纺衫', '裤子', '高跟鞋', '袜子'],
|
|
||||||
},
|
|
||||||
yAxis: {},
|
|
||||||
series: [
|
|
||||||
{
|
|
||||||
name: '销量',
|
|
||||||
type: 'bar',
|
|
||||||
data: [5, 20, 36, 10, 10, 20],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -46,10 +126,6 @@ onMounted(() => {
|
|||||||
align-self: self-end;
|
align-self: self-end;
|
||||||
}
|
}
|
||||||
|
|
||||||
.cargo-inner {
|
|
||||||
background: #0f0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cargo-chart {
|
.cargo-chart {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
@ -1,73 +1,74 @@
|
|||||||
<!-- 实时数据表格 -->
|
<!-- 实时数据表格 -->
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue';
|
import { ref } from "vue";
|
||||||
import { useWsStore } from '../store';
|
import { useWsStore } from "../store";
|
||||||
|
|
||||||
const listData = ref([]);
|
const listData = ref([]);
|
||||||
const store = useWsStore();
|
const store = useWsStore();
|
||||||
store.$subscribe((mutation, state) => {
|
store.$subscribe((mutation, state) => {
|
||||||
listData.value = state.data2.lineDetailData.map((item, index) => ({
|
listData.value = (state.data2.lineDetailData || Array(3).fill({})).map(
|
||||||
productLine: item.productLine,
|
(item, index) => ({
|
||||||
mbt: item.edgingInput,
|
productLine: item.productLine || "---",
|
||||||
mbb: item.edgingOutput,
|
mbt: item.edgingInput || "---",
|
||||||
dkt: item.drillingInput,
|
mbb: item.edgingOutput || "---",
|
||||||
dkb: item.drillingOutput,
|
dkt: item.drillingInput || "---",
|
||||||
dmt: item.coatingInput,
|
dkb: item.drillingOutput || "---",
|
||||||
dmb: item.coatingOutput,
|
dmt: item.coatingInput || "---",
|
||||||
syt: item.silkInput,
|
dmb: item.coatingOutput || "---",
|
||||||
syb: item.silkOutput,
|
syt: item.silkInput || "---",
|
||||||
ght: item.solidificationInput,
|
syb: item.silkOutput || "---",
|
||||||
ghb: item.solidificationOutput,
|
ght: item.solidificationInput || "---",
|
||||||
gh1: item.temperingInput,
|
ghb: item.solidificationOutput || "---",
|
||||||
gh2: item.temperingOutput,
|
gh1: item.temperingInput || "---",
|
||||||
bzt: item.finalInput,
|
gh2: item.temperingOutput || "---",
|
||||||
bzb: item.finalOutput,
|
bzt: item.finalInput || "---",
|
||||||
}));
|
bzb: item.finalOutput || "---",
|
||||||
|
})
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
const tableData = [
|
|
||||||
{ productLine: '00A', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
{ productLine: '00B', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
{ productLine: '00C', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
{ productLine: '00D', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
{ productLine: '00E', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
{ productLine: '00F', mbt: '---', mbb: '---', dkt: '---', dkb: '---', dmt: '---', dmb: '---', syt: '---', syb: '---', ght: '---', ghb: '---', gh1: '---', gh2: '---', bzt: '---', bzb: '---' },
|
|
||||||
]
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="realtime-table">
|
<div class="realtime-table">
|
||||||
<el-table class="dark-table" :data="listData" :show-overflow-tooltip="true" row-class-name="dark-row"
|
<el-table
|
||||||
header-row-class-name="dark-header">
|
class="dark-table"
|
||||||
<el-table-column prop="productLine" label="产线"></el-table-column>
|
:data="listData"
|
||||||
<el-table-column prop="mbt" label="磨边上"></el-table-column>
|
:show-overflow-tooltip="true"
|
||||||
<el-table-column prop="mbb" label="磨边下"></el-table-column>
|
row-class-name="dark-row"
|
||||||
<el-table-column prop="dkt" label="打孔上"></el-table-column>
|
header-row-class-name="dark-header"
|
||||||
<el-table-column prop="dkb" label="打孔下"></el-table-column>
|
>
|
||||||
<el-table-column prop="dmt" label="镀膜上"></el-table-column>
|
<el-table-column prop="productLine" label="产线"></el-table-column>
|
||||||
<el-table-column prop="dmb" label="镀膜下"></el-table-column>
|
<el-table-column prop="mbt" label="磨边上"></el-table-column>
|
||||||
<el-table-column prop="syt" label="丝印上"></el-table-column>
|
<el-table-column prop="mbb" label="磨边下"></el-table-column>
|
||||||
<el-table-column prop="syb" label="丝印下"></el-table-column>
|
<el-table-column prop="dkt" label="打孔上"></el-table-column>
|
||||||
<el-table-column prop="ght" label="固化上"></el-table-column>
|
<el-table-column prop="dkb" label="打孔下"></el-table-column>
|
||||||
<el-table-column prop="ghb" label="固化下"></el-table-column>
|
<el-table-column prop="dmt" label="镀膜上"></el-table-column>
|
||||||
<el-table-column prop="gh1" label="钢化上"></el-table-column>
|
<el-table-column prop="dmb" label="镀膜下"></el-table-column>
|
||||||
<el-table-column prop="gh2" label="钢化下"></el-table-column>
|
<el-table-column prop="syt" label="丝印上"></el-table-column>
|
||||||
<el-table-column prop="bzt" label="包装上"></el-table-column>
|
<el-table-column prop="syb" label="丝印下"></el-table-column>
|
||||||
<el-table-column prop="bzb" label="包装下"></el-table-column>
|
<el-table-column prop="ght" label="固化上"></el-table-column>
|
||||||
</el-table>
|
<el-table-column prop="ghb" label="固化下"></el-table-column>
|
||||||
</div>
|
<el-table-column prop="gh1" label="钢化上"></el-table-column>
|
||||||
|
<el-table-column prop="gh2" label="钢化下"></el-table-column>
|
||||||
|
<el-table-column prop="bzt" label="包装上"></el-table-column>
|
||||||
|
<el-table-column prop="bzb" label="包装下"></el-table-column>
|
||||||
|
</el-table>
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
|
|
||||||
.realtime-table {
|
.realtime-table {
|
||||||
background: #00f3;
|
background: #00f3;
|
||||||
height: 240px;
|
height: 160px;
|
||||||
width: 80%;
|
width: 80%;
|
||||||
align-self: self-start;
|
align-self: self-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.dark-table {
|
.dark-table {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.dark-table >>> .el-table__inner-wrapper::before {
|
||||||
|
background-color: transparent !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
@ -1,34 +1,42 @@
|
|||||||
<script setup>
|
<script setup>
|
||||||
import { ref, watch, onMounted } from 'vue';
|
import { ref, watch, computed, onMounted } from "vue";
|
||||||
|
const props = defineProps({
|
||||||
const emit = defineEmits(['size-change']);
|
size: {
|
||||||
const size = ref(100);
|
type: Number,
|
||||||
const slider = ref(null);
|
default: 60,
|
||||||
|
},
|
||||||
// watchers
|
|
||||||
watch(size, (value) => {
|
|
||||||
if (value == null) return;
|
|
||||||
emit('size-change', value);
|
|
||||||
});
|
});
|
||||||
|
const emit = defineEmits(["size-change"]);
|
||||||
|
|
||||||
|
const slider = ref(null);
|
||||||
|
const innerSize = ref(props.size);
|
||||||
|
|
||||||
|
// watch
|
||||||
|
watch(
|
||||||
|
() => innerSize.value,
|
||||||
|
(value) => {
|
||||||
|
emit("size-change", value);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
// handlers
|
// handlers
|
||||||
function keydownHandler(e) {
|
function keydownHandler(e) {
|
||||||
if (e.shiftKey && e.key === 'L') {
|
if (e.shiftKey && e.key === "L") {
|
||||||
if (slider.value) {
|
if (slider.value) {
|
||||||
slider.value.classList.toggle('show');
|
slider.value.classList.toggle("show");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// hooks
|
// hooks
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
document.addEventListener('keydown', keydownHandler);
|
document.addEventListener("keydown", keydownHandler);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div ref="slider" class="slider">
|
<div ref="slider" class="slider">
|
||||||
<input type="range" min="0" max="100" v-model="size" />
|
<input type="range" min="0" max="100" v-model="innerSize" />
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -1,11 +1,28 @@
|
|||||||
<!-- 公告页面 -->
|
<!-- 公告页面 -->
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue';
|
import { ref } from "vue";
|
||||||
const emit = defineEmits(['home']);
|
import { useWsStore } from "../store";
|
||||||
const content = ref('公告加载中...');
|
const emit = defineEmits(["home"]);
|
||||||
|
|
||||||
|
// load 公告
|
||||||
|
const vertical_content = ref("公告加载中...");
|
||||||
|
const horizontal_content = ref("公告加载中...");
|
||||||
|
const store = useWsStore();
|
||||||
|
store.$subscribe((mutation, state) => {
|
||||||
|
vertical_content.value =
|
||||||
|
(state.data3.deliveryNotification || [])
|
||||||
|
.map((item) => item.deliveryContent || "")
|
||||||
|
.join("")
|
||||||
|
.replaceAll(/<br(\s?)\/>/g, "") || "暂无公告";
|
||||||
|
horizontal_content.value =
|
||||||
|
(state.data2.deliveryMsg || [])
|
||||||
|
.map((item) => item.deliveryContent || "")
|
||||||
|
.join("\t") || "暂无公告";
|
||||||
|
});
|
||||||
|
|
||||||
|
// handlers
|
||||||
const handleClose = () => {
|
const handleClose = () => {
|
||||||
emit('home');
|
emit("home");
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@ -14,7 +31,7 @@ const handleClose = () => {
|
|||||||
<h1 class="announcement-title">公告栏</h1>
|
<h1 class="announcement-title">公告栏</h1>
|
||||||
<main class="announcement-content">
|
<main class="announcement-content">
|
||||||
<ScrollText :vertical="true" :duration="10" :pause-on-hover="true">
|
<ScrollText :vertical="true" :duration="10" :pause-on-hover="true">
|
||||||
{{ content }}
|
<div v-html="vertical_content"></div>
|
||||||
</ScrollText>
|
</ScrollText>
|
||||||
</main>
|
</main>
|
||||||
<div class="announcement-footer">
|
<div class="announcement-footer">
|
||||||
@ -24,7 +41,7 @@ const handleClose = () => {
|
|||||||
>
|
>
|
||||||
返回
|
返回
|
||||||
</button>
|
</button>
|
||||||
<ScrollText> 数据加载异常 </ScrollText>
|
<ScrollText> {{ horizontal_content }} </ScrollText>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -54,6 +71,8 @@ const handleClose = () => {
|
|||||||
padding: 8px 80px;
|
padding: 8px 80px;
|
||||||
font-size: 72px;
|
font-size: 72px;
|
||||||
font-family: serif;
|
font-family: serif;
|
||||||
|
overflow: hidden;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.announcement-footer {
|
.announcement-footer {
|
||||||
@ -64,5 +83,6 @@ const handleClose = () => {
|
|||||||
line-height: 128px;
|
line-height: 128px;
|
||||||
font-family: sans-serif;
|
font-family: sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
user-select: none;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
55
src/utils/useWebsocket.js
Normal file
55
src/utils/useWebsocket.js
Normal file
@ -0,0 +1,55 @@
|
|||||||
|
import Client from "./ws";
|
||||||
|
|
||||||
|
export default function useWebsocket(store, path) {
|
||||||
|
connect0(store);
|
||||||
|
connectPath(store, path);
|
||||||
|
}
|
||||||
|
|
||||||
|
const url = "ws://192.168.1.101:8082/QbMonitoring/websocket";
|
||||||
|
function connectPath(store, path) {
|
||||||
|
new Client(
|
||||||
|
{
|
||||||
|
url: url + path,
|
||||||
|
name: path,
|
||||||
|
},
|
||||||
|
(message) => {
|
||||||
|
try {
|
||||||
|
const data = JSON.parse(message.data);
|
||||||
|
console.log("message", JSON.parse(message.data));
|
||||||
|
|
||||||
|
if ("specificationChanges" in data) {
|
||||||
|
console.log("[*] setting data1");
|
||||||
|
// 分屏推送1数据
|
||||||
|
store.updateData("1", data);
|
||||||
|
} else if ("deliveryNotification" in data) {
|
||||||
|
// 分屏推送3数据
|
||||||
|
console.log("[*] setting data3");
|
||||||
|
store.updateData("3", data);
|
||||||
|
} else {
|
||||||
|
// 分屏推送2数据
|
||||||
|
console.log("[*] setting data2");
|
||||||
|
store.updateData("2", data);
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.log("[x] 未解析的ws数据: ", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
function connect0(store) {
|
||||||
|
new Client(
|
||||||
|
{
|
||||||
|
url: url + "/0",
|
||||||
|
name: "/0",
|
||||||
|
},
|
||||||
|
(message) => {
|
||||||
|
try {
|
||||||
|
const data = JSON.parse(message.data);
|
||||||
|
console.log("message --- 0 ---> ", JSON.parse(message.data));
|
||||||
|
} catch (err) {
|
||||||
|
console.log("[x] 未解析的ws数据: ", err);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user