| | |
| | | <button class="item" onclick="shuttleOperator(1)">入库</button> |
| | | <button class="item" onclick="shuttleOperator(2)">出库</button> |
| | | <button class="item" onclick="shuttleOperator(14)">移动到目标库位</button> |
| | | <button class="item" onclick="shuttleOperator(16)">移动到提升机</button> |
| | | </div> |
| | | </div> |
| | | </div> |
| | |
| | | <button class="item" onclick="shuttleOperator(7)">后移</button> |
| | | <button class="item" onclick="shuttleOperator(8)">前移</button> |
| | | <button class="item" onclick="shuttleOperator(9)">复位</button> |
| | | <button class="item" onclick="shuttleOperator(10)">正方向(左)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(11)">负方向(右)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(10)">正方向(右)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(11)">负方向(左)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(12)">正方向(前)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(13)">负方向(后)寻库位</button> |
| | | <button class="item" onclick="shuttleOperator(15)">充电开关</button> |
| | |
| | | // $("#mode-"+table[i-1].shuttleNo).html(table[i-1].statusVal===0?'联机':'脱机'); |
| | | let tr = tableEl.find("tr").eq(i); |
| | | setVal(tr.children("td").eq(0), table[i-1].shuttleNo); |
| | | setVal(tr.children("td").eq(1), table[i-1].status); |
| | | setVal(tr.children("td").eq(1), table[i-1].status$); |
| | | setVal(tr.children("td").eq(2), table[i-1].busyStatus); |
| | | setVal(tr.children("td").eq(3), table[i-1].currentCode); |
| | | setVal(tr.children("td").eq(4), table[i-1].batteryPower); |
| | |
| | | setVal(tr.children("td").eq(13), table[i-1].currentOrBeforeCode); |
| | | setVal(tr.children("td").eq(14), table[i-1].codeOffsetX); |
| | | setVal(tr.children("td").eq(15), table[i-1].codeOffsetY); |
| | | setVal(tr.children("td").eq(16), table[i-1].currentVoltage ? table[i-1].currentVoltage + "V" : ""); |
| | | setVal(tr.children("td").eq(16), table[i-1].currentVoltage$); |
| | | setVal(tr.children("td").eq(17), table[i-1].currentAnalogValue); |
| | | } |
| | | } else if (res.code === 403){ |