carCylinderGuid.jsp 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
  2. <%@ page import="com.runzhixing.bean.CylinderFollow" %>
  3. <%@ page import="com.runzhixing.tool.Util" %>
  4. <%
  5. String path = request.getContextPath();
  6. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
  7. List<CylinderFollow> list = new ArrayList<CylinderFollow>();
  8. list = (List)session.getAttribute("CylinderFollowlist");
  9. String s = (String)session.getAttribute("cylinderGuid");
  10. %>
  11. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  12. <html>
  13. <head>
  14. <base href="<%=basePath%>">
  15. <title>车辆审核信息查询</title>
  16. <meta http-equiv="pragma" content="no-cache">
  17. <meta http-equiv="cache-control" content="no-cache">
  18. <meta http-equiv="expires" content="0">
  19. <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  20. <meta http-equiv="description" content="This is my page">
  21. <meta http-equiv="X-UA-Compatible" content="IE=9"/>
  22. <meta http-equiv="X-UA-Compatible" content="IE=10"/>
  23. <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
  24. </head>
  25. <body>
  26. <center>
  27. <% if(list.size()>0){%>
  28. <table class="hzbspan" width="auto" border="1" cellpadding="2" cellspacing="0">
  29. <tr style="text-align: center; COLOR: #0076C8; BACKGROUND-COLOR: #F4FAFF; font-weight: bold">
  30. <td>序号</td>
  31. <td>操作</td>
  32. <td>执行站点</td>
  33. <td>执行人员</td>
  34. <td>执行时间</td>
  35. <td>证书</td>
  36. <td>最近操作站点</td>
  37. <td>最近操作人</td>
  38. <td>最近操作时间</td>
  39. </tr>
  40. <%
  41. int xuhao = 1;
  42. for(CylinderFollow ca:list){
  43. String name = "";name=ca.getProcessTypeName();
  44. if(name==null||name=="null") continue;
  45. %>
  46. <tr style="text-align: center; COLOR: #0076C8; BACKGROUND-COLOR: #F4FAFF; font-weight: bold">
  47. <td><%=xuhao %></td>
  48. <% if(name.equals("安装")) {%>
  49. <td><a href="cylinderGuiddo" target="_blank"><%=Util.removeNull(ca.getProcessTypeName()) %></a></td>
  50. <%} else if(name.equals("监检")) {%>
  51. <td><a href="CylinderMonitorListdo" target="_blank"><%=Util.removeNull(ca.getProcessTypeName()) %></a></td>
  52. <%} else if(name.equals("审核")) {%>
  53. <td><a href="carAuditdo" target="_blank"><%=Util.removeNull(ca.getProcessTypeName()) %></a></td>
  54. <%} else if(name.equals("标签")) {%>
  55. <td><a href="tagQuerydo" target="_blank"><%=Util.removeNull(ca.getProcessTypeName()) %></a></td>
  56. <% }else{%>
  57. <td><a href="javascript:void(0);" ><%=Util.removeNull(ca.getProcessTypeName()) %></a></td>
  58. <%} %>
  59. <td><%=Util.removeNull(ca.getStation()) %></td>
  60. <td><%=Util.removeNull(ca.getWorkerName()) %></td>
  61. <td><%=Util.removeNull(ca.getOperateDate1()) %></td>
  62. <td><%=Util.removeNull(ca.getCert()) %></td>
  63. <td><%=Util.removeNull(ca.getEditStation()) %></td>
  64. <td><%=Util.removeNull(ca.getEditOperator()) %></td>
  65. <td><%=Util.removeNull(ca.getEditOperTime1()) %></td>
  66. </tr>
  67. <%
  68. xuhao++;
  69. }%>
  70. </table>
  71. <%}else{%>
  72. <font class="hzbspan">没有查询到相关信息!!!</font>
  73. <% } %>
  74. </center>
  75. </body>
  76. </html>