| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
- <%@ page import="com.runzhixing.bean.CarChange" %>
- <%
- String path = request.getContextPath();
- String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
- List<CarChange> list = (List)session.getAttribute("carChangelist");
- %>
- <!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>
- <td>使用登记证</td>
- </tr>
-
- <%
- int xuhao = 1;
- for(CarChange ca:list){ %>
- <tr style="text-align: center; COLOR: #0076C8; BACKGROUND-COLOR: #F4FAFF; font-weight: bold">
- <td><%=xuhao %></td>
- <td><%=ca.getChangeState()==0?"过户中":"过户完成" %></td>
- <td><%=ca.getCarNo() %></td>
- <td><%=ca.getPlateTypeName() %></td>
- <td><%=ca.getCarUnit() %></td>
- <td><%=ca.getCarOwnerName() %></td>
- <td><%=ca.getEditOperator() %></td>
- <td><%=ca.getEditStation() %></td>
- <td><%=ca.getRegNo() %></td>
- </tr>
- <%
- xuhao++;
- }%>
-
- </table>
- <%}else{%>
-
- <font class="hzbspan">没有查询到相关信息!!!</font>
- <% } %>
- </center>
-
- </body>
- </html>
|