diff --git a/src/views/basic/workplace/rackManage.vue b/src/views/basic/workplace/rackManage.vue index b0b26dc7..9d4763d2 100644 --- a/src/views/basic/workplace/rackManage.vue +++ b/src/views/basic/workplace/rackManage.vue @@ -25,7 +25,17 @@ @click="handleClick(slot)" > -

{{ slot.name }}

+

{{ slot.name }}

+ {{ slot.reCount <= 0? '无库存': slot.reCount <= slot.remindCount?'低库存':'正常' }} +
@@ -205,7 +215,7 @@ export default { .shelf-slot { margin-right: 10px; /* 增加槽位之间的间距 */ margin-bottom: 10px; /* 增加槽位之间的间距 */ - width: 150px; /* 固定槽位宽度 */ + width: 180px; /* 固定槽位宽度 */ height: 100px; /* 固定槽位高度 */ display: flex; align-items: center; /* 垂直居中 */ @@ -229,6 +239,7 @@ export default { /* #d4edda 是一个浅绿色,接近于 Bootstrap 中的成功提示背景色 */ border-radius: 4px; /* 可选:为卡片添加圆角,使其看起来更柔和 */ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* 可选:为卡片添加阴影,增加立体感 */ + position: relative; /* 为了让内部的绝对定位元素相对于卡片定位 */ }