From e875c70fea51ffafd689fd0d5f8b51bd3df40de0 Mon Sep 17 00:00:00 2001 From: wangfei <3597712270@qq.com> Date: 星期二, 07 一月 2025 15:26:13 +0800 Subject: [PATCH] 中空模块新增空闲状态,中空配方新增字段,掰片模块调整文字样式 --- UI-Project/src/views/hollow/hollowslicecage.vue | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/UI-Project/src/views/hollow/hollowslicecage.vue b/UI-Project/src/views/hollow/hollowslicecage.vue index 85e1a66..d6ae2ba 100644 --- a/UI-Project/src/views/hollow/hollowslicecage.vue +++ b/UI-Project/src/views/hollow/hollowslicecage.vue @@ -18,6 +18,8 @@ const mesReplyEntity = ref('#911005'); const outInkageEntity = ref('#911005'); const outRequestEntity = ref('#911005'); +const freeone = ref('#911005'); +const freetwo = ref('#911005'); const tableDataa = ref([]) const tableDatab = ref([]) const tableDatac = ref([]) @@ -307,8 +309,14 @@ if (data.outInkageEntity != null) { outInkageEntity.value = data.outInkageEntity[0] == true ? 'green' : '#911005'; } + if (data.freeTwoReqvestEntity != null) { + freetwo.value = data.freetwo[0] == true ? 'green' : '#911005'; + } if (data.outRequestEntity != null) { outRequestEntity.value = data.outRequestEntity == 1 ? 'green' : '#911005'; + } + if (data.free0neReguestEntity != null) { + freeone.value = data.freeone == 1 ? 'green' : '#911005'; } if(data.bigStorageCageDetailsOutTask!=null){ tableDatac.value = data.bigStorageCageDetailsOutTask[0] @@ -426,6 +434,10 @@ <i :style="{ marginTop: '2px', backgroundColor: outInkageEntity, width: '18px', height: '18px', borderRadius: '50%', display: 'block' }"></i> <div style="margin-left: 70px;">{{ $t('searchOrder.outRequestEntity') }}</div> <i :style="{ marginTop: '2px', backgroundColor: outRequestEntity, width: '18px', height: '18px', borderRadius: '50%', display: 'block' }"></i> + <div style="margin-left: 70px;">{{ $t('hellow.freeone') }}</div> + <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 class="table-container"> <el-card style="flex: 1;margin-left: 10px;margin-top: 10px;" v-loading="loading"> -- Gitblit v1.8.0