| | |
| | | <!-- 手动操作 --> |
| | | <div class="crn-operation"> |
| | | |
| | | <div class="crn-operation-shade"> |
| | | <span class="crn-operation-shade-span"> |
| | | WCS 系统运行中,请停止后操作 |
| | | </span> |
| | | </div> |
| | | |
| | | <!-- 设备任务选择 --> |
| | | <div class="task-select"> |
| | | <!-- 堆垛机选择 --> |
| | |
| | | getCrnStateInfo(); |
| | | initCrnMsgTable(); |
| | | getCrnMsgInfo(); |
| | | operatorBlockShow(); |
| | | }); |
| | | // 数据更新 |
| | | setInterval(function () { |
| | |
| | | },1000); |
| | | setInterval(function () { |
| | | getSiteOutput(); |
| | | operatorBlockShow(); |
| | | },500); |
| | | |
| | | // 判断手动操作模块是否可用 |
| | | function operatorBlockShow() { |
| | | if (top.systemRunning) { |
| | | $('.crn-operation').css("opacity", "0.5"); |
| | | $('.crn-operation-shade').show(); |
| | | $('.crn-operation-shade-span').show(); |
| | | } else { |
| | | $('.crn-operation').css("opacity", "1"); |
| | | $('.crn-operation-shade').hide(); |
| | | $('.crn-operation-shade-span').hide(); |
| | | } |
| | | } |
| | | |
| | | // 获取堆垛机执行中的命令 |
| | | function getCommandLog() { |
| | | $.ajax({ |