⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 vehicle.jsp

📁 这是一个物流管理系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="GBK"%>

<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
  <head>
    <html:base />
    
    <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">
	<!--
	<link rel="stylesheet" type="text/css" href="styles.css">
	-->

  </head>
  
  <body>
    <strong><font color="#00a0be">Xsofa物流系统<div align="right"><html:link href="../admin/adminLogin.jsp">登出</html:link></div></font></strong>
     <hr>
    <div style="background-color: rgb(0, 160, 190);" >
    <font face="黑体"><font color="#ffffff">调度员:<bean:write name="username" scope="session"/>,您的位置--><html:link href="./dispatchCenter.jsp
    ">调度中心</html:link></font></font></div>
    <br>

    <br> 
    <div align="center"><font color="#00A0BE">车 辆 状 态</font><br><br>
    <table width="80%" border="1" bordercolor="#00A0BE" cellspacing="0" cellpadding="4">
    <tbody>
     <tr>
     <td  bgcolor="#00A0BE" align="center" colspan="5"><font color="#ffffff">车辆使用情况</font></td>
     </tr>
     <tr><td align="center">车 辆 号 码</td>
         <td align="center">司 机 号 码</td>
         <td align="center">车 辆 类 型</td>
         <td align="center">车 辆 状 态</td>
     </tr>
     <logic:iterate id="veh" type="bean.Vehicle" name="list" scope="request">
     <tr>
         <td align="center"><font color="#00A0BE">${veh.vehicleid}</font></td>
         <td align="center"><font color="#00A0BE">${veh.employeeinfo.employeeid}</font></td>
         <td align="center"><font color="#00A0BE">
         <logic:equal name="veh" property="vehiclesort" value="1">冷藏</logic:equal>
         <logic:equal name="veh" property="vehiclesort" value="0">普通</logic:equal>
         </font></td>
         <td align="center"><font color="#00A0BE">
         <logic:equal name="veh" property="vehiclestate" value="1">不可用</logic:equal>
         <logic:equal name="veh" property="vehiclestate" value="0">可用</logic:equal>
         </font></td>
     </tr>
     </logic:iterate>
     <tr><td colspan="5"><hr></tr>
    </tbody>
  </table>
  </div>
   <br>
   <div align="center">
                       <html:button property="back" onclick="window.location='./dispatch/dispatchCenter.jsp'">返  回</html:button>
   </div>
  </body>
</html:html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -