📄 updateroadlog.jsp
字号:
<%@ page language="java" import="java.util.*" pageEncoding="GBK"%>
<%@ page import="java.sql.Date" %>
<%@ 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" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Xsofa物流系统欢迎你!</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">
-->
<script type="text/javascript">
function check(){
var out = document.getElementsByName("outgrowthID")[0].value;
if(out==null ||out == ""){
alert("任务单编号不能为空");
return false;
}
return true;
}
</script>
</head>
<body>
<strong><font color="#00a0be">Xsofa物流系统</font></strong>
<hr>
<div style="background-color: rgb(0, 160, 190);" ><font face="黑体"><font color="#ffffff">>>欢迎您的光临</font></font></div>
<br>
<br> <center>
填写行车日志
<html:form action="/updateRoadlog">
<table bgcolor="#00A0BE" border="1">
<tbody><tr>
<td>日 志 编 号 :</td>
<td><html:text property="roadLogID" readonly="true" value="自动生成(不必填写)"></html:text> </td></tr>
<tr>
<td>派车任务单编号 :</td>
<td><html:select property="outgrowthID">
<logic:iterate id="rlist" type="bean.Outgrowth" name="roadlist" scope="session">
<bean:define id="roadid" name="rlist" property="outgrowthid"></bean:define>
<html:option value="${roadid}">${roadid}</html:option>
</logic:iterate>
</html:select></td></tr>
<tr>
<td>到 货 时 间 :</td>
<td><html:text property="vehicleTime" readonly="true" value="<%=new Date(System.currentTimeMillis()).toString() %>"></html:text> </td></tr>
<tr>
<td>备 注 :</td>
<td><html:text property="remark"></html:text> </td></tr>
</tbody></table><br>
<html:submit value="确定" onmousedown="check()"></html:submit>
<html:button property="buttom" value="取消" onclick="history.back()"></html:button>
</html:form>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -