| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ page import="com.runzhixing.bean.CarAudit" %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- List<CarAudit> list = (List)session.getAttribute("carAuitlist");
- %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
- <html>
- <head>
- <base href="<%=basePath%>">
-
- <title>车辆审核信息查询</title>
-
- <meta http-equiv="pragma" content="no-cache">
- <meta http-equiv="cache-control" content="no-cache">
- <meta http-equiv="expires" content="0">
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
- <meta http-equiv="description" content="This is my page">
- <meta http-equiv="X-UA-Compatible" content="IE=9"/>
- <meta http-equiv="X-UA-Compatible" content="IE=10"/>
- <link rel="stylesheet" type="text/css" href="css/common/hzbstyle.css">
- </head>
-
- <body>
- <center>
- <% if(list.size()>0){%>
- <table class="hzbspan" width="auto" border="1" cellpadding="2" cellspacing="0">
- <tr style="text-align: center; COLOR: #0076C8; BACKGROUND-COLOR: #F4FAFF; font-weight: bold">
- <td>序号</td>
- <td>车牌号</td>
- <td>车牌类型</td>
- <td>原操作状态</td>
- <td>新操作状态</td>
- <td>审核站点</td>
- <td>审核操作员</td>
- <td>录入时间</td>
- </tr>
-
- <%
- int xuhao = 1;
- for(CarAudit ca:list){ %>
- <tr style="text-align: center; COLOR: #0076C8; BACKGROUND-COLOR: #F4FAFF; font-weight: bold">
- <td><%=xuhao %></td>
- <td><%=ca.getCarNo() %></td>
- <td><%=ca.getPlateTypeName() %></td>
- <td><%=ca.getOldOperStateName() %></td>
- <td><%=ca.getNewOperStateName() %></td>
- <td><%=ca.getAuditStation() %></td>
- <td><%=ca.getAuditOperator() %></td>
- <td><%=ca.getAuditOperTime() %></td>
- </tr>
- <%
- xuhao++;
- }%>
-
- </table>
- <%}else{%>
-
- <font class="hzbspan">没有查询到相关信息!!!</font>
- <% } %>
- </center>
-
- </body>
- </html>
|