first commit
This commit is contained in:
52
bin/WebRoot/jsp/material/inkInfoView.jsp
Normal file
52
bin/WebRoot/jsp/material/inkInfoView.jsp
Normal file
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%>
|
||||
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%>
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
|
||||
<html>
|
||||
<head>
|
||||
<title></title>
|
||||
<jsp:include page="../inc.jsp"></jsp:include>
|
||||
|
||||
|
||||
<style>
|
||||
body{ text-align:center}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<form method="post" class="form">
|
||||
<input type="hidden" name="id" value="${inkInfo.id}"/>
|
||||
<table class="table">
|
||||
|
||||
<tr>
|
||||
<th>设备编号</th>
|
||||
<td>${inkInfo.equipmentcode}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>设备名称</th>
|
||||
<td>${inkInfo.equipmentname}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>参数上次修改时间</th>
|
||||
<td>${fn:substring(inkInfo.time ,0,19)}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>修改者</th>
|
||||
<td><c:if test="${inkInfo.operator=='emp01'}">admin</c:if></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>油墨更换提醒间隔时间</th>
|
||||
<td>${inkInfo.parameter1} 分钟</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>稀释剂添加提醒间隔时间</th>
|
||||
<td>${inkInfo.parameter2 } 分钟</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>网板更换提醒间隔时间</th>
|
||||
<td>${inkInfo.parameter3 } 分钟</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</form>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user