Compare commits
No commits in common. "0d96fec181d029dbfe16def1fbb8f25faae0cb0e" and "112730b52a2996e0ae3387c96d5b894f795ec415" have entirely different histories.
0d96fec181
...
112730b52a
@ -112,5 +112,4 @@ li {
|
||||
.nav-menu button:hover>.nav-icon #announce-main,
|
||||
.nav-menu button:hover>.nav-icon #chart-main {
|
||||
fill: #b1daff !important;
|
||||
}
|
||||
</style>
|
||||
}</style>
|
||||
|
@ -3,26 +3,8 @@
|
||||
import { ref } from "vue";
|
||||
import { useWsStore } from "../store";
|
||||
|
||||
const listData = ref([]);
|
||||
const store = useWsStore();
|
||||
const listData = ref((store.data2.lineDetailData || Array(3).fill({})).map(
|
||||
(item, index) => ({
|
||||
productLine: item.productLine || "---",
|
||||
mbt: item.edgingInput || "---",
|
||||
mbb: item.edgingOutput || "---",
|
||||
dkt: item.drillingInput || "---",
|
||||
dkb: item.drillingOutput || "---",
|
||||
dmt: item.coatingInput || "---",
|
||||
dmb: item.coatingOutput || "---",
|
||||
syt: item.silkInput || "---",
|
||||
syb: item.silkOutput || "---",
|
||||
ght: item.solidificationInput || "---",
|
||||
ghb: item.solidificationOutput || "---",
|
||||
gh1: item.temperingInput || "---",
|
||||
gh2: item.temperingOutput || "---",
|
||||
bzt: item.finalInput || "---",
|
||||
bzb: item.finalOutput || "---",
|
||||
})
|
||||
));
|
||||
store.$subscribe((mutation, state) => {
|
||||
listData.value = (state.data2.lineDetailData || Array(3).fill({})).map(
|
||||
(item, index) => ({
|
||||
@ -48,8 +30,13 @@ store.$subscribe((mutation, state) => {
|
||||
|
||||
<template>
|
||||
<div class="realtime-table">
|
||||
<el-table class="dark-table" :data="listData" :show-overflow-tooltip="true" row-class-name="dark-row"
|
||||
header-row-class-name="dark-header">
|
||||
<el-table
|
||||
class="dark-table"
|
||||
:data="listData"
|
||||
:show-overflow-tooltip="true"
|
||||
row-class-name="dark-row"
|
||||
header-row-class-name="dark-header"
|
||||
>
|
||||
<el-table-column prop="productLine" label="产线"></el-table-column>
|
||||
<el-table-column prop="mbt" label="磨边上"></el-table-column>
|
||||
<el-table-column prop="mbb" label="磨边下"></el-table-column>
|
||||
|
@ -58,7 +58,7 @@ function handleConfirm() {
|
||||
}
|
||||
|
||||
.setting-dialog {
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
margin: auto;
|
||||
top: 0;
|
||||
left: 0;
|
||||
|
129
src/pages/3D.vue
129
src/pages/3D.vue
@ -4,7 +4,25 @@ import { useSettings } from '../store/settings';
|
||||
import { useWsStore } from "../store";
|
||||
import { ref, computed } from 'vue';
|
||||
import Icon from '../assets/svg/IconStatus.vue';
|
||||
import { eqMap, statusMap, initState } from './eqMaps'
|
||||
|
||||
const { settings } = useSettings();
|
||||
const store = useWsStore();
|
||||
const lines = ref({
|
||||
g1: null,
|
||||
g2: null,
|
||||
g3: null, // 钢3线
|
||||
});
|
||||
store.$subscribe((mutation, state) => {
|
||||
if (state.data2.lineDetailData && state.data2.lineDetailData.length == 3) {
|
||||
lines.value.g1 = state.data2.lineDetailData[0]
|
||||
lines.value.g2 = state.data2.lineDetailData[1]
|
||||
lines.value.g3 = state.data2.lineDetailData[2]
|
||||
console.log('g1: ', lines.value.g1)
|
||||
console.log('g2: ', lines.value.g2)
|
||||
console.log('g3: ', lines.value.g3)
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
const props = defineProps({
|
||||
line: {
|
||||
@ -12,31 +30,14 @@ const props = defineProps({
|
||||
default: 1,
|
||||
},
|
||||
});
|
||||
const eqStatus = computed(() => settings.eqStatus);
|
||||
|
||||
const status = ref(initState)
|
||||
const { settings } = useSettings();
|
||||
const store = useWsStore();
|
||||
const lines = ref({
|
||||
g1: store.data2.lineDetailData?.[0] || null,
|
||||
g2: store.data2.lineDetailData?.[1] || null,
|
||||
g3: store.data2.lineDetailData?.[2] || null, // 钢3线
|
||||
});
|
||||
store.$subscribe((mutation, state) => {
|
||||
// 进储片信息
|
||||
if (state.data2.lineDetailData && state.data2.lineDetailData.length == 3) {
|
||||
lines.value.g1 = state.data2.lineDetailData[0]
|
||||
lines.value.g2 = state.data2.lineDetailData[1]
|
||||
lines.value.g3 = state.data2.lineDetailData[2]
|
||||
}
|
||||
// 故障信息
|
||||
if (state.data1.EquipmentsArrayList && Array.isArray(state.data1.EquipmentsArrayList)) {
|
||||
state.data1.EquipmentsArrayList.map(item => {
|
||||
const { equipmentName, status: itemStatus } = item;
|
||||
status.value[eqMap[equipmentName]] = statusMap[itemStatus];
|
||||
const eqStatus = computed(() => settings.eqStatus);
|
||||
const status = ref({
|
||||
'B2清洗机': '',
|
||||
'M1清洗机': 'error',
|
||||
'M1磨边机': 'warn'
|
||||
// ...
|
||||
})
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -82,13 +83,13 @@ store.$subscribe((mutation, state) => {
|
||||
<div class="info-2" v-if="eqStatus && line == '2'">
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['Z7钻孔机'] == 'error' ? '#ff3737' : status['Z7钻孔机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
Z7钻孔机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['Z6钻孔机'] == 'error' ? '#ff3737' : status['Z6钻孔机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
Z6钻孔机
|
||||
</h1>
|
||||
<span v-if="lines.g3?.drillingInput">上片: {{ lines.g3.drillingInput }}</span>
|
||||
@ -96,37 +97,37 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7清洗机'] == 'error' ? '#ff3737' : status['S7清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6清洗机'] == 'error' ? '#ff3737' : status['S6清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7前储片台'] == 'error' ? '#ff3737' : status['S7前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6前储片台'] == 'error' ? '#ff3737' : status['S6前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7丝印机'] == 'error' ? '#ff3737' : status['S7丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7丝印机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6丝印机'] == 'error' ? '#ff3737' : status['S6丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6丝印机
|
||||
</h1>
|
||||
<span v-if="lines.g3?.silkInput">上片: {{ lines.g3.silkInput }}</span>
|
||||
@ -134,13 +135,13 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7固化炉'] == 'error' ? '#ff3737' : status['S7固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7固化炉
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6固化炉'] == 'error' ? '#ff3737' : status['S6固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6固化炉
|
||||
</h1>
|
||||
<span v-if="lines.g3?.solidificationInput">上片: {{ lines.g3.solidificationInput }}</span>
|
||||
@ -148,13 +149,13 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7后储片台'] == 'error' ? '#ff3737' : status['S7后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7后储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6后储片台
|
||||
</h1>
|
||||
</div>
|
||||
@ -247,7 +248,7 @@ store.$subscribe((mutation, state) => {
|
||||
<div class="info-6" v-if="eqStatus && line == '6'">
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['Z5钻孔机'] == 'error' ? '#ff3737' : status['Z5钻孔机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
Z5钻孔机
|
||||
</h1>
|
||||
</div>
|
||||
@ -261,49 +262,49 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['Z3钻孔机'] == 'error' ? '#ff3737' : status['Z3钻孔机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
Z3钻孔机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S5清洗机'] == 'error' ? '#ff3737' : status['S5清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S5清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S4清洗机'] == 'error' ? '#ff3737' : status['S4清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S4清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S3清洗机'] == 'error' ? '#ff3737' : status['S3清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S3清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S5前储片台'] == 'error' ? '#ff3737' : status['S5前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S5前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S4前储片台'] == 'error' ? '#ff3737' : status['S4前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S4前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S3前储片台'] == 'error' ? '#ff3737' : status['S3前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S3前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S5丝印机'] == 'error' ? '#ff3737' : status['S5丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S5丝印机
|
||||
</h1>
|
||||
</div>
|
||||
@ -317,7 +318,7 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S3丝印机'] == 'error' ? '#ff3737' : status['S3丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S3丝印机
|
||||
</h1>
|
||||
</div>
|
||||
@ -325,25 +326,25 @@ store.$subscribe((mutation, state) => {
|
||||
<div class="info-7" v-if="eqStatus && line == '7'">
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S5后储片台'] == 'error' ? '#ff3737' : status['S5后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S5后储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S4后储片台'] == 'error' ? '#ff3737' : status['S4后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S4后储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S3后储片台'] == 'error' ? '#ff3737' : status['S3后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S3后储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S5固化炉'] == 'error' ? '#ff3737' : status['S5固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S5固化炉
|
||||
</h1>
|
||||
</div>
|
||||
@ -357,13 +358,13 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S3固化炉'] == 'error' ? '#ff3737' : status['S3固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S3固化炉
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B2前储片台'] == 'error' ? '#ff3737' : status['B2前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M4磨边机'] == 'error' ? '#ff3737' : status['M4磨边机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B2前储片台
|
||||
</h1>
|
||||
</div>
|
||||
@ -468,19 +469,19 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S1前储片台'] == 'error' ? '#ff3737' : status['S1前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M1清洗机'] == 'error' ? '#ff3737' : status['M1清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S1前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S2丝印机'] == 'error' ? '#ff3737' : status['S2丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M1清洗机'] == 'error' ? '#ff3737' : status['M1清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S2丝印机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S1丝印机'] == 'error' ? '#ff3737' : status['S1丝印机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['M1清洗机'] == 'error' ? '#ff3737' : status['M1清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S1丝印机
|
||||
</h1>
|
||||
<span v-if="lines.g1?.silkInput">上片: {{ lines.g1.silkInput }}</span>
|
||||
@ -502,13 +503,13 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S7固化炉'] == 'error' ? '#ff3737' : status['S7固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S7固化炉
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['S6固化炉'] == 'error' ? '#ff3737' : status['S6固化炉'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
S6固化炉
|
||||
</h1>
|
||||
<span v-if="lines.g3?.solidificationInput">上片: {{ lines.g3.solidificationInput }}</span>
|
||||
@ -516,7 +517,7 @@ store.$subscribe((mutation, state) => {
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B3前储片台'] == 'error' ? '#ff3737' : status['B3前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B3前储片台
|
||||
</h1>
|
||||
</div>
|
||||
@ -524,25 +525,24 @@ store.$subscribe((mutation, state) => {
|
||||
<div class="info-12" v-if="eqStatus && line == '12'">
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B3前储片台'] == 'error' ? '#ff3737' : status['B3前储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B3前储片台
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B3清洗机'] == 'error' ? '#ff3737' : status['B3清洗机'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B3清洗机
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B3下片'] == 'error' ? '#ff3737' : status['B3下片'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B3下片
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />B3下片
|
||||
</h1>
|
||||
</div>
|
||||
<div class="info">
|
||||
<h1>
|
||||
<Icon :color="status['B3后储片台'] == 'error' ? '#ff3737' : status['B3后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
<Icon :color="status['S6后储片台'] == 'error' ? '#ff3737' : status['S6后储片台'] == 'warn' ? '#ffb524' : '#24ff5e'" />
|
||||
B3后储片台
|
||||
</h1>
|
||||
</div>
|
||||
@ -1056,5 +1056,4 @@ store.$subscribe((mutation, state) => {
|
||||
background: url(../assets/model/F12.png) no-repeat;
|
||||
background-size: 1920px 1080px;
|
||||
background-position: 0 -80px;
|
||||
}
|
||||
</style>
|
||||
}</style>
|
||||
|
@ -3,18 +3,14 @@
|
||||
import { ref } from "vue";
|
||||
import { useWsStore } from "../store";
|
||||
import Container from "../components/Base/Container.vue";
|
||||
|
||||
const alarmList = ref([]);
|
||||
const store = useWsStore();
|
||||
const alarmList = ref((store.data1.alarmArrList || []).map((item, index) => ({
|
||||
id: item.id,
|
||||
eqName: item.equipmentName,
|
||||
eqIndex: index + 1,
|
||||
alarmGrade: item.alarmLevel,
|
||||
alarmDetail: item.alarmDetails,
|
||||
position: `${item.productLine} - ${item.segment}`,
|
||||
})));
|
||||
store.$subscribe((mutation, state) => {
|
||||
alarmList.value = state.data1.alarmArrList.map((item, index) => ({
|
||||
|
||||
alarmList.value = (store.data1.alarmArrList ?? [
|
||||
{ id: 1, equipmentName: 'hallo', alarmLevel: 1, alarmDetails: 'asdf', productLine: 'A001', segment: '2' },
|
||||
{ id: 1, equipmentName: 'fffff', alarmLevel: 1, alarmDetails: 'sda', productLine: 'A002', segment: '3' },
|
||||
{ id: 1, equipmentName: 'aaaa', alarmLevel: 1, alarmDetails: 'dfd', productLine: 'A001', segment: '1' },
|
||||
]).map((item, index) => ({
|
||||
id: item.id,
|
||||
eqName: item.equipmentName,
|
||||
eqIndex: index + 1,
|
||||
@ -22,7 +18,17 @@ store.$subscribe((mutation, state) => {
|
||||
alarmDetail: item.alarmDetails,
|
||||
position: `${item.productLine} - ${item.segment}`,
|
||||
}));
|
||||
});
|
||||
|
||||
// store.$subscribe((mutation, state) => {
|
||||
// alarmList.value = state.data1.alarmArrList.map((item, index) => ({
|
||||
// id: item.id,
|
||||
// eqName: item.equipmentName,
|
||||
// eqIndex: index + 1,
|
||||
// alarmGrade: item.alarmLevel,
|
||||
// alarmDetail: item.alarmDetails,
|
||||
// position: `${item.productLine} - ${item.segment}`,
|
||||
// }));
|
||||
// });
|
||||
|
||||
// function handleIgnore() {
|
||||
// alarmList.value.splice(0)
|
||||
|
@ -48,7 +48,7 @@ const handleClose = () => {
|
||||
<button
|
||||
id="return-btn"
|
||||
style="
|
||||
position: absolute;
|
||||
position: fixed;
|
||||
right: 32px;
|
||||
top: 56px;
|
||||
appearance: none;
|
||||
@ -80,7 +80,6 @@ const handleClose = () => {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
color: #f00;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.announcement-title {
|
||||
@ -110,6 +109,7 @@ const handleClose = () => {
|
||||
padding: 0 80px;
|
||||
line-height: 128px;
|
||||
font-family: sans-serif;
|
||||
position: relative;
|
||||
user-select: none;
|
||||
}
|
||||
</style>
|
||||
|
@ -1,166 +0,0 @@
|
||||
export const initState = {
|
||||
// 钢一线
|
||||
M1上片: "",
|
||||
M2上片: "",
|
||||
M1磨边机: "",
|
||||
M2磨边机: "",
|
||||
M1清洗机: "",
|
||||
M1清洗机: "",
|
||||
S1丝印机: "",
|
||||
S2丝印机: "",
|
||||
S1前储片台: "",
|
||||
S2前储片台: "",
|
||||
S1清洗机: "",
|
||||
S2清洗机: "",
|
||||
Z1钻孔机: "",
|
||||
Z2钻孔机: "",
|
||||
B1前储片台: "",
|
||||
B1后储片台: "",
|
||||
B1下片: "",
|
||||
B1清洗机: "",
|
||||
//
|
||||
M3清洗机: "",
|
||||
M4清洗机: "",
|
||||
M5清洗机: "",
|
||||
M3磨边机: "",
|
||||
M4磨边机: "",
|
||||
M5磨边机: "",
|
||||
M3上片: "",
|
||||
M4上片: "",
|
||||
M5上片: "",
|
||||
Z3钻孔机: "",
|
||||
Z4钻孔机: "",
|
||||
Z5钻孔机: "",
|
||||
S3清洗机: "",
|
||||
S4清洗机: "",
|
||||
S5清洗机: "",
|
||||
S3前储片台: "",
|
||||
S4前储片台: "",
|
||||
S5前储片台: "",
|
||||
S3丝印机: "",
|
||||
S4丝印机: "",
|
||||
S5丝印机: "",
|
||||
S3固化机: "",
|
||||
S4固化机: "",
|
||||
S5固化机: "",
|
||||
S3后储片台: "",
|
||||
S4后储片台: "",
|
||||
S5后储片台: "",
|
||||
B2前储片台: "",
|
||||
B2后储片台: "",
|
||||
B2下片: "",
|
||||
B2清洗机: "",
|
||||
//
|
||||
M6上片: "",
|
||||
M7上片: "",
|
||||
M6磨边机: "",
|
||||
M7磨边机: "",
|
||||
M6清洗机: "",
|
||||
M7清洗机: "",
|
||||
Z6钻孔机: "",
|
||||
Z7钻孔机: "",
|
||||
S6清洗机: "",
|
||||
S7清洗机: "",
|
||||
S6前储片台: "",
|
||||
S7前储片台: "",
|
||||
S6丝印机: "",
|
||||
S7丝印机: "",
|
||||
S6固化炉: "",
|
||||
S7固化炉: "",
|
||||
S6后储片台: "",
|
||||
S7后储片台: "",
|
||||
B3前储片台: "",
|
||||
B3后储片台: "",
|
||||
B3清洗机: "",
|
||||
B3下片: "",
|
||||
};
|
||||
|
||||
export const statusMap = [
|
||||
"error", // 关机
|
||||
"work", // 工作
|
||||
"warn", // 未工作
|
||||
"error", // 错误
|
||||
];
|
||||
|
||||
export const eqMap = {
|
||||
// 钢一线
|
||||
C1LR1: "M1上片",
|
||||
C1LR2: "M2上片",
|
||||
C1MM1: "M1磨边机",
|
||||
C1MM2: "M2磨边机",
|
||||
C1ECM1: "M1清洗机",
|
||||
C1ECM2: "M2清洗机",
|
||||
"s1--": "S1丝印机",
|
||||
"s2--": "S2丝印机",
|
||||
C1ST1: "S1前储片台",
|
||||
C1ST2: "S2前储片台",
|
||||
C1SCM1: "S1清洗机",
|
||||
C1SCM2: "S2清洗机",
|
||||
C1HP1: "Z1钻孔机",
|
||||
C1HP2: "Z2钻孔机",
|
||||
C3ST1: "B1前储片台",
|
||||
C3ST2: "B1后储片台",
|
||||
C3UL1: "B1下片",
|
||||
C3UL1: "B1下片1",
|
||||
C3UL2: "B1下片2",
|
||||
C3UCM1: "B1清洗机",
|
||||
//
|
||||
B1ECM1: "M3清洗机",
|
||||
B1ECM2: "M4清洗机",
|
||||
B1ECM3: "M5清洗机",
|
||||
B1MM1: "M3磨边机",
|
||||
B1MM2: "M4磨边机",
|
||||
B1MM3: "M5磨边机",
|
||||
B1LR1: "M3上片",
|
||||
B1LR2: "M4上片",
|
||||
B1LR3: "M5上片",
|
||||
B1HP1: "Z3钻孔机",
|
||||
B1HP2: "Z4钻孔机",
|
||||
B1HP3: "Z5钻孔机",
|
||||
B1SCM1: "S3清洗机",
|
||||
B1SCM2: "S4清洗机",
|
||||
B1SCM3: "S5清洗机",
|
||||
B1ST1: "S3前储片台",
|
||||
B1ST2: "S4前储片台",
|
||||
B1ST3: "S5前储片台",
|
||||
B1SP1: "S3丝印机",
|
||||
B1SP2: "S4丝印机",
|
||||
B1SP3: "S5丝印机",
|
||||
B2CO1: "S3固化炉",
|
||||
B2CO2: "S4固化炉",
|
||||
B2CO3: "S5固化炉",
|
||||
B2ST1: "S3后储片台",
|
||||
B2ST2: "S4后储片台",
|
||||
B2ST3: "S5后储片台",
|
||||
B3ST1: "B2前储片台",
|
||||
B3ST2: "B2后储片台",
|
||||
B3UL1: "B2下片",
|
||||
B3UL1: "B2下片1",
|
||||
B3UL2: "B2下片2",
|
||||
B3UCM1: "B2清洗机",
|
||||
//
|
||||
A1LR1: "M6上片",
|
||||
A1LR2: "M7上片",
|
||||
A1MM1: "M6磨边机",
|
||||
A1MM2: "M7磨边机",
|
||||
A1ECM1: "M6清洗机",
|
||||
A1ECM2: "M7清洗机",
|
||||
A1HP1: "Z6钻孔机",
|
||||
A1HP2: "Z7钻孔机",
|
||||
A1SCM1: "S6清洗机",
|
||||
A1SCM2: "S7清洗机",
|
||||
A1ST1: "S6前储片台",
|
||||
A1ST2: "S7前储片台",
|
||||
A1SP1: "S6丝印机",
|
||||
A1SP2: "S7丝印机",
|
||||
A2CO1: "S6固化炉",
|
||||
A2CO2: "S7固化炉",
|
||||
A2ST1: "S6后储片台",
|
||||
A2ST2: "S7后储片台",
|
||||
A3ST1: "B3前储片台",
|
||||
A3ST2: "B3后储片台",
|
||||
A3UCM1: "B3清洗机",
|
||||
A3UL1: "B3下片",
|
||||
A3UL1: "B3下片1",
|
||||
A3UL2: "B3下片2",
|
||||
};
|
Loading…
Reference in New Issue
Block a user