diff --git a/src/views/main-sidebar.vue b/src/views/main-sidebar.vue
index 5fe020c..aa20c5e 100644
--- a/src/views/main-sidebar.vue
+++ b/src/views/main-sidebar.vue
@@ -19,92 +19,12 @@
仓库监控
-
-
- 库位监控
-
扫码入库
-
-
-
- 基础信息
-
-
-
- 设备基础信息
-
-
-
-
- 产品基础信息
-
-
-
-
-
- 仓库基础信息
-
-
-
- 库位基础信息
-
-
-
- 仓库区域基础信息
-
-
-
-
-
-
- 报表统计
-
-
-
- 报警记录
-
-
-
- 通讯日志
-
-
-
- 出入库任务日志
-
-
-
- 库位使用详情日志
-
-
-
-
-
-
- 库内作业管理
-
-
-
- 出入库任务
-
-
-
- 库位使用详情
-
-
@@ -40,7 +40,11 @@
class="shelfBox"
ref="shelfBox"
v-bind:class="[
- item.isOccupy === 0 ? 'normalShelfBox' : 'deliveryShelfBox'
+ item.isOccupy === 0
+ ? 'normalShelfBox'
+ : item.status === 3
+ ?'badShelfBox'
+ :'deliveryShelfBox'
]"
@click="addOutTask(item.id, item.anotherName,item.isOccupy)"
>
@@ -258,6 +262,9 @@ export default {
.deliveryShelfBox {
background-color: #e2a448;
}
+.badShelfBox {
+ background-color: #cdcdc5;
+}
.normalShelfBox {
background-color: #09bb07;