vehicle_list.jsp
上传用户:jhtang88
上传日期:2014-01-27
资源大小:28528k
文件大小:5k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=utf-8"%>
  2. <%@ page import = "java.util.*"%>
  3. <%@ page import = "cn.js.fan.db.*"%>
  4. <%@ page import = "cn.js.fan.web.*"%>
  5. <%@ page import = "cn.js.fan.util.*"%>
  6. <%@ page import = "com.redmoon.oa.vehicle.*"%>
  7. <jsp:useBean id="privilege" scope="page" class="com.redmoon.oa.pvg.Privilege"/>
  8. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  9. <html>
  10. <head>
  11. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  12. <title>车辆管理</title>
  13. <link href="../common.css" rel="stylesheet" type="text/css">
  14. <%@ include file="../inc/nocache.jsp"%>
  15. <style type="text/css">
  16. <!--
  17. .STYLE2 {color: #0033FF}
  18. .STYLE3 {color: #FF0000}
  19. -->
  20. </style>
  21. </head>
  22. <body background="" leftmargin="0" topmargin="5" marginwidth="0" marginheight="0">
  23. <%@ include file="vehicle_inc_menu_top.jsp"%>
  24. <br>
  25. <table border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF" class="main">
  26.   <tr> 
  27.     <td width="840" height="23" valign="middle" class="right-title"><span>&nbsp;车辆管理</span></td>
  28.   </tr>
  29.   <tr> 
  30.     <td valign="top" background="images/tab-b-back.gif">
  31. <%
  32. String sql = "",typeDescription = "",state = "";
  33. sql = "select licenseNo from vehicle" ;
  34. String querystr = "";
  35. int pagesize = 10;
  36. Paginator paginator = new Paginator(request);
  37. int curpage = paginator.getCurPage();
  38. VehicleDb vd = new VehicleDb();
  39. ListResult lr = vd.listResult(sql, curpage, pagesize);
  40. int total = lr.getTotal();
  41. Vector v = lr.getResult();
  42.     Iterator ir = null;
  43. if (v!=null)
  44. ir = v.iterator();
  45. paginator.init(total, pagesize);
  46. // 设置当前页数和总页数
  47. int totalpages = paginator.getTotalPages();
  48. if (totalpages==0)
  49. {
  50. curpage = 1;
  51. totalpages = 1;
  52. }
  53. %>
  54.       <table width="95%" border="0" align="center" cellpadding="0" cellspacing="0">
  55.         <tr> 
  56.           <td width="47">&nbsp;</td>
  57.           <td align="right" backgroun="images/title1-back.gif">找到符合条件的记录 <b><%=paginator.getTotal() %></b> 条 每页显示 <b><%=paginator.getPageSize() %></b> 条 页次 <b><%=curpage %>/<%=totalpages %></td>
  58.         </tr>
  59.       </table> 
  60.       <form name="form1" action="vehicle_add.jsp" method="post">
  61.     <table width="97%" border="0" align="center" cellpadding="2" cellspacing="0" >
  62.           <tr align="center" bgcolor="#C4DAFF">
  63.             <td width="19%" height="24" >车牌号</td>
  64.             <td width="15%" bgcolor="#C4DAFF" >驾驶员</td>
  65.             <td width="16%" bgcolor="#C4DAFF" >类型</td>
  66.             <td width="14%" >购置日期</td>
  67.             <td width="12%" >状态</td>
  68.             <td width="24%" >操作</td>
  69.           </tr>
  70.         </table>
  71.     <%
  72.    int i = 0;
  73. while (ir!=null && ir.hasNext()) {
  74. vd = (VehicleDb)ir.next();
  75. int type = vd.getType();
  76. VehicleTypeDb vtd = new VehicleTypeDb(type);
  77. typeDescription = vtd.getDescription();
  78. state = Integer.toString(vd.getState());
  79. if(state.equals("0")){
  80.    state = "可用";
  81. }else{
  82.    if(state.equals("1")){
  83.      state = "使用中";
  84.    }else{
  85.      if(state.equals("2")){
  86.         state = "损坏";
  87.      }else{
  88.     state = "报废";
  89.  }
  90.    }
  91. }
  92. %>
  93.       <table width="97%" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#B6CFC5" bgcolor="#FFFFFF">
  94.         <tr align="center" >
  95.           <td width="19%" height="22"><a href="vehicle_show.jsp?licenseNo=<%=StrUtil.UrlEncode(vd.getLicenseNo())%>"><%=vd.getLicenseNo()%></a></td> 
  96.           <td width="15%"><%=vd.getDriver()%></td>
  97.   <td width="16%"><%=typeDescription%></td>
  98.   <td width="14%"><%=vd.getBuyDate()%></td>
  99.   <td width="12%"><%=state%></td>
  100.           <td width="12%"><a href="vehicle_edit.jsp?licenseNo=<%=vd.getLicenseNo()%>">编辑</a></td>
  101.   <td width="12%"><a href="vehicle_do.jsp?licenseNo=<%=vd.getLicenseNo()%>&op=del">删除</a></td>
  102.         </tr>
  103.       </table>
  104.       <%}%>   
  105.   </form>
  106.       <table width="98%" border="0" cellspacing="1" cellpadding="3" align="center" class="9black">
  107.         <tr> 
  108.           <td width="1%" height="23">&nbsp;</td>
  109.           <td height="23" valign="baseline"> 
  110.             <div align="right">
  111.              <%
  112.    out.print(paginator.getCurPageBlock("?"+querystr));
  113.  %>
  114.             &nbsp;</div></td>
  115.         </tr>
  116.       </table>    </td>
  117.   </tr>
  118.   <tr> 
  119.     <td height="30" colspan="2" align="center">
  120.       <input name="button" type="submit" class="button1"  value="添加车辆" onClick="form1.submit()">
  121.     </td>
  122.   </tr>
  123. </table>
  124. </body>
  125. </html>