#
Junjie
2025-11-17 5a56db983850c7e2e3c194aa9a221295271c0cc3
#
2个文件已修改
19 ■■■■ 已修改文件
src/main/java/com/zy/asrs/domain/enums/StationStatusType.java 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/webapp/static/css/watch/console_vue.css 14 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/main/java/com/zy/asrs/domain/enums/StationStatusType.java
@@ -18,6 +18,8 @@
    SITE_AUTO_RUN,
    // 自动+ID
    SITE_AUTO_ID,
    // 故障
    SITE_ERROR,
    ;
    public static StationStatusType process(StationProtocol stationProtocol){
@@ -39,6 +41,9 @@
        if (!stationProtocol.isAutoing()) {
            return SITE_UNAUTO;
        }
        if (stationProtocol.getError() > 0) {
            return SITE_ERROR;
        }
        return null;
    }
src/main/webapp/static/css/watch/console_vue.css
@@ -44,7 +44,10 @@
    justify-content: center;
    align-items: center;
    user-select: none;
    background: #f5d88f;;
    background-color: #f5d88f;
    background-image:
        linear-gradient(to bottom, transparent 0, transparent 11px, #666 11px, #666 13px, transparent 13px, transparent 22px, #666 22px, #666 24px, transparent 24px, transparent 100%),
        repeating-linear-gradient(to right, transparent 0, transparent 14px, rgba(80,80,80,0.35) 14px, rgba(80,80,80,0.35) 15px);
    padding: 0;
    margin: 0;
    position: relative;
@@ -199,7 +202,7 @@
/* 自动+有物+ID */
.site-auto-run-id {
    background-color: rgb(252, 48, 48);
    background-color: rgb(48, 191, 252);
}
/* 自动+有物 */
@@ -220,6 +223,11 @@
/* 非自动/手动 */
.site-unauto {
    background-color: rgb(184, 184, 184);
}
/* 故障 */
.site-error {
    background-color: rgb(255, 50, 50);
}
/*空闲*/
@@ -328,7 +336,7 @@
#siteWindow-head .detailed {
    display: inline-block;
    background: none;
    color: #00000;
    color: #000;
    margin-left: 20px;
}