自动化立体仓库 - WMS系统
#
LSH
2023-05-26 d1b1e26890d2d0b9270370f1de8a53cd3c181e30
#
4个文件已修改
28 ■■■■ 已修改文件
src/main/java/com/zy/asrs/entity/Node.java 15 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/home/map.html 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/home/map_edit.html 2 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/views/node/node.html 10 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/entity/Node.java
@@ -361,6 +361,21 @@
        }
    }
    public String getRow1$(){
        if (null == this.row1){ return null; }
        return String.valueOf(this.row1);
    }
    public String getBay1$(){
        if (null == this.lev1){ return null; }
        return String.valueOf(this.lev1);
    }
    public String getLev1$(){
        if (null == this.bay1){ return null; }
        return String.valueOf(this.bay1);
    }
    public void setStatus(Integer status) {
        this.status = status;
    }
src/main/webapp/views/home/map.html
@@ -44,6 +44,7 @@
            color: #fff;
            /*transform: perspective(130px) rotateX(30deg) translateZ(-20px);*/
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            border-radius: 50% 20% / 10% 40%;
        }
        .pointBox:hover{
src/main/webapp/views/home/map_edit.html
@@ -16,6 +16,8 @@
            width: 30px;
            height: 30px;
            margin-right: 1px;
            box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
            /*border-radius: 10% / 50%;*/
        }
        .pointBoxGreen {
src/main/webapp/views/node/node.html
@@ -173,8 +173,8 @@
                pidName: 'parentId'     // pid字段名称
            },
            cols: [[
                {type: 'checkbox'}
                ,{type: 'numbers'}
                {type: 'checkbox'},
                {type: 'numbers'}
                ,{field: 'name', align: 'left',title: '编号/名称', minWidth: 150}
                // ,{field: 'uuid', left: 'center',title: '编号/名称', minWidth: 150}
                ,{field: 'type$', align: 'center',title: '类型', templet: '#typeTpl'}
@@ -184,9 +184,9 @@
                // ,{field: 'count', align: 'center',title: '数量'}
                // ,{field: 'sort', align: 'center',title: '排序'}
                ,{field: 'status$', align: 'center',title: '状态', hide: true}
                ,{field: 'row1', align: 'center',title: '排'}
                ,{field: 'bay1', align: 'center',title: '列'}
                ,{field: 'lev1', align: 'center',title: '层'}
                ,{field: 'row1$', align: 'center',title: '排'}
                ,{field: 'bay1$', align: 'center',title: '列'}
                ,{field: 'lev1$', align: 'center',title: '层'}
                ,{field: 'updateTime$', align: 'center',title: '修改时间'}
                ,{field: 'updateBy$', align: 'center',title: '修改人员'}
                ,{field: 'memo', align: 'center',title: '备注', hide: true}