From 95acbc65a8f55ac54a631a149f50192b085d5ad9 Mon Sep 17 00:00:00 2001
From: Junjie <fallin.jie@qq.com>
Date: 星期五, 14 四月 2023 12:49:12 +0800
Subject: [PATCH] 控制台四向穿梭车增加库位号和层高,提升机参数输出设置
---
src/main/webapp/views/shuttle.html | 6 +++++-
1 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/src/main/webapp/views/shuttle.html b/src/main/webapp/views/shuttle.html
index ce3a332..616bbb7 100644
--- a/src/main/webapp/views/shuttle.html
+++ b/src/main/webapp/views/shuttle.html
@@ -72,6 +72,8 @@
<th>鍗囬檷浼烘湇璐熻浇</th>
<th>琛岃蛋浼烘湇璐熻浇</th>
<th>浣滀笟鏍囪</th>
+ <th>搴撲綅鍙�</th>
+ <th>褰撳墠妤煎眰</th>
</tr>
</thead>
<tbody>
@@ -611,7 +613,7 @@
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);
+ setVal(tr.children("td").eq(16), table[i-1].currentVoltage ? table[i-1].currentVoltage + "V" : "");
setVal(tr.children("td").eq(17), table[i-1].currentAnalogValue);
}
} else if (res.code === 403){
@@ -649,6 +651,8 @@
setVal(tr.children("td").eq(7), table[i-1].currentLiftServoLoad);
setVal(tr.children("td").eq(8), table[i-1].currentMoveServoLoad);
setVal(tr.children("td").eq(9), table[i-1].pakMk);
+ setVal(tr.children("td").eq(10), table[i-1].locNo);
+ setVal(tr.children("td").eq(11), table[i-1].lev);
}
} else if (res.code === 403){
window.location.href = baseUrl+"/login";
--
Gitblit v1.9.1