<!DOCTYPE html>
|
<html lang="en">
|
<head>
|
<meta charset="UTF-8">
|
<title>穿梭车监控管理</title>
|
<link rel="stylesheet" type="text/css" href="../static/css/normalize.css">
|
<link rel="stylesheet" type="text/css" href="../static/css/common.css">
|
<link rel="stylesheet" href="../static/css/ste.css">
|
<script type="text/javascript" src="../static/js/layer/layer.js"></script>
|
</head>
|
<body>
|
<div style="padding: 10px;height: 100%;float: left;width: 6%">
|
<div class="button-window"></div>
|
</div>
|
<div style="height: 100%;padding-left: 6%">
|
<div style="padding: 10px;height: 100%">
|
<!-- 日志监控板 -->
|
<div class="log-board">
|
<div class="command-log">
|
<h3>执行中的命令</h3>
|
<div class="ste-command-item">
|
<label>1#</label>
|
<button id="demoBtn-1" class="demoBtn" onclick="changePosition()">修改位置</button>
|
<!-- <span> </span>-->
|
<button class="demoBtn" onclick="">所属堆垛机</button>
|
</div>
|
<div class="ste-command-item" style="margin-top: 25px">
|
<label>2#</label>
|
<button id="demoBtn-2" class="demoBtn" onclick="">修改位置</button>
|
<!-- <span> </span>-->
|
<button class="demoBtn" onclick="">所属堆垛机</button>
|
</div>
|
<div class="ste-command-item" style="margin-top: 25px">
|
<label>3#</label>
|
<button id="demoBtn-3" class="demoBtn" onclick="">修改位置</button>
|
<!-- <span> </span>-->
|
<button class="demoBtn" onclick="">所属堆垛机</button>
|
</div>
|
</div>
|
<!-- 堆垛机状态位信息 -->
|
<div class="ste-state">
|
<table id="ste-state-table">
|
<thead>
|
<tr>
|
<th>穿梭车</th>
|
<th>模式</th>
|
<th>状态</th>
|
<th>有物</th>
|
<th>在轨</th>
|
<th>电量</th>
|
<th>排</th>
|
<th>列</th>
|
<th>层</th>
|
<th>货叉定位</th>
|
<th>载货台定位</th>
|
<th>走行在定位</th>
|
<th>报警信息1</th>
|
<th>报警信息2</th>
|
</tr>
|
</thead>
|
<tbody>
|
</tbody>
|
</table>
|
</div>
|
</div>
|
<!-- 堆垛机状态 -->
|
<div class="ste-msg">
|
<table id="ste-msg-table">
|
<thead>
|
<tr>
|
<th>穿梭车</th>
|
<th>任务号</th>
|
<th>任务类型</th>
|
<th>当前位置</th>
|
<th>近点距离</th>
|
<th>当前速度</th>
|
<th>高低位</th>
|
<th>过账指令任务号</th>
|
<th>过账指令状态</th>
|
<th>盘点数量</th>
|
<th>穿梭板就绪</th>
|
<th>充电桩号</th>
|
<th>堆垛机运行</th>
|
<th>堆垛机伸叉</th>
|
<th>堆垛机搬移</th>
|
</tr>
|
</thead>
|
<tbody>
|
</tbody>
|
</table>
|
</div>
|
<!-- 手动操作 -->
|
<div class="ste-operation">
|
<!-- 遮罩层 -->
|
<!-- <div class="ste-operation-shade">-->
|
<!-- <span class="ste-operation-shade-span">-->
|
<!-- WCS 系统运行中,请停止后操作-->
|
<!-- </span>-->
|
<!-- </div>-->
|
<!-- 设备任务选择 -->
|
<div class="task-select">
|
<!-- 选择 -->
|
<div id="ste-select" class="operator-item">
|
<span class="select-title">穿梭车号</span>
|
<div class="select-container">
|
<label><input type="radio" name="steSelect" value="1" checked> 1号穿梭车</label>
|
<label><input type="radio" name="steSelect" value="2"> 2号穿梭车</label>
|
<label><input type="radio" name="steSelect" value="3"> 3号穿梭车</label>
|
</div>
|
</div>
|
</div>
|
<!-- 设备任务操作 -->
|
<div class="task-operator">
|
<fieldset>
|
<legend>手动操作</legend>
|
<div class="button-group">
|
<button class="item" onclick="put()">左出库</button>
|
<button class="item" onclick="take()">右出库</button>
|
<button class="item" onclick="stockMove()">左入库</button>
|
<button class="item" onclick="siteMove()">右入库</button>
|
<button class="item" onclick="bacOrigin()">左移库</button>
|
<button class="item" onclick="reverseOrigin()">右移库</button>
|
<button class="item" onclick="coorMove()">原点</button>
|
<button class="item" onclick="taskComplete()">远点 </button>
|
<button class="item" onclick="pause()">A 点</button>
|
<button class="item" onclick="boot()">B 点</button>
|
<button class="item" onclick="pause()">左搬移</button>
|
<button class="item" onclick="boot()">右搬移</button>
|
<button class="item" onclick="boot()">充电</button>
|
<button class="item" onclick="pause()">左盘点</button>
|
<button class="item" onclick="boot()">右盘点</button>
|
<button class="item" onclick="boot()">任务完成</button>
|
<button class="item" onclick="clearCommand()">清除命令</button>
|
<button class="item" onclick="handleReset()">复位</button>
|
</div>
|
</fieldset>
|
</div>
|
|
</div>
|
<!-- 堆垛机日志输出 -->
|
<div class="ste-output-board">
|
<textarea id="ste-output"></textarea>
|
</div>
|
</div>
|
</div>
|
</body>
|
</html>
|
<script>
|
function changePosition() {
|
|
}
|
</script>
|