feat(coil): 添加钢卷加工流程图组件并优化界面

- 新增ProcessFlow组件展示钢卷加工流程
- 在base面板中添加流程图显示开关
- 调整DragResizeBox的z-index确保显示层级
- 修复部分样式问题和代码格式
- 更新字典项从warehouse_sync改为wms_next_warehouse
This commit is contained in:
砂糖
2026-03-24 10:51:09 +08:00
parent 74cf838844
commit e76799f4e0
4 changed files with 187 additions and 15 deletions

View File

@@ -254,7 +254,7 @@ export default {
/* 容器样式:改为全屏且无视觉样式 */
.drag-resize-container {
position: fixed; /* 固定定位覆盖整个屏幕 */
top: 0;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
@@ -271,7 +271,7 @@ export default {
box-sizing: border-box;
overflow: hidden;
pointer-events: auto; /* 元素本身响应鼠标事件 */
z-index: 9999; /* 确保元素在最上层 */
z-index: 99999; /* 确保元素在最上层 */
background-color: #ffffff; /* 添加背景色,提升可视性 */
}