oyq28 hace 1 año
padre
commit
39805e9b14
Se han modificado 1 ficheros con 5 adiciones y 5 borrados
  1. 5 5
      src/main/resources/static/admin/bigScreen/index.html

+ 5 - 5
src/main/resources/static/admin/bigScreen/index.html

@@ -117,15 +117,11 @@
                       <table>
                                 <thead>
                                 <tr>
-                                    <th>设备状态</th>
                                     <th>${device.deviceState}</th>
+                                    <th>${device.deviceWorkState}</th>
                                 </tr>
                                 </thead>
                                 <tbody>
-                                <tr>
-                                    <td>设备厂家</td>
-                                    <td>${device.factory? device.factory : '未知'}</td>
-                                </tr>
                                 <tr>
                                     <td>型号</td>
                                     <td>${device.deviceModel? device.deviceModel : '未知'}</td>
@@ -146,6 +142,10 @@
                                     <td>进给速度</td>
                                     <td>${(device.actFeed !== null && device.actFeed !== undefined && device.actFeed !== 'NaN' && device.actFeed !== '') ? device.actFeed : '0'}</td>
                                 </tr>
+                                <tr>
+                                    <td>进给倍率</td>
+                                    <td>${(device.feedRateOvr !== null && device.feedRateOvr !== undefined && device.feedRateOvr !== 'NaN' && device.feedRateOvr !== '') ? device.feedRateOvr + '%' : '0'}</td>
+                                </tr>
                                 </tbody>
                             </table>
                     </div>