From e33068bf181a56eb3bba2e39cb0573cafb06584a Mon Sep 17 00:00:00 2001
From: wangfei <3597712270@qq.com>
Date: 星期二, 25 三月 2025 15:02:39 +0800
Subject: [PATCH] 中空一线、二线websockect接收更改,空闲状态名称更改,新增中空三线页面,中空理片笼新增三线空闲状态
---
UI-Project/src/views/hollow/hollowslicecage.vue | 8 +++++++-
1 files changed, 7 insertions(+), 1 deletions(-)
diff --git a/UI-Project/src/views/hollow/hollowslicecage.vue b/UI-Project/src/views/hollow/hollowslicecage.vue
index 84fd9de..aec4351 100644
--- a/UI-Project/src/views/hollow/hollowslicecage.vue
+++ b/UI-Project/src/views/hollow/hollowslicecage.vue
@@ -19,6 +19,7 @@
const outRequestEntity = ref('#911005');
const freeone = ref('#911005');
const freetwo = ref('#911005');
+const freethree = ref('#911005');
const tableDataa = ref([])
const tableDatab = ref([])
const tableDatac = ref([])
@@ -347,6 +348,9 @@
}
if (data.freeTwoRequestEntity != null) {
freetwo.value = data.freeTwoRequestEntity[0] == true ? 'green' : '#911005';
+ }
+ if (data.freeThreeRequestEntity != null) {
+ freethree.value = data.freeThreeRequestEntity[0] == true ? 'green' : '#911005';
}
if (data.outRequestEntity != null) {
outRequestEntity.value = data.outRequestEntity == 1 ? 'green' : '#911005';
@@ -681,7 +685,9 @@
<i :style="{ marginTop: '2px', backgroundColor: freeone, width: '18px', height: '18px', borderRadius: '50%', display: 'block' }"></i>
<div style="margin-left: 70px;">{{ $t('hellow.freetwo') }}</div>
<i :style="{ marginTop: '2px', backgroundColor: freetwo, width: '18px', height: '18px', borderRadius: '50%', display: 'block' }"></i>
- </div>
+ <div style="margin-left: 70px;">{{ $t('hellow.freethree') }}</div>
+ <i :style="{ marginTop: '2px', backgroundColor: freethree, width: '18px', height: '18px', borderRadius: '50%', display: 'block' }"></i>
+ </div>
<div class="table-container">
<el-card style="flex: 1;margin-left: 10px;margin-top: 10px;" v-loading="loading">
<div style="width: 98%; height: calc(100% - 35px); overflow-y: auto;max-height: 300px;">
--
Gitblit v1.8.0