📄 orderupdate.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ 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:html lang="true">
<head>
<html:base/>
<title>更新通知单信息</title>
<link rel="stylesheet" type="text/css" href="../common/css/common.css" />
<script type="text/javascript" src="../common/js/order.js"></script>
<%
String type =(String)session.getAttribute("userClass");
if (!type.equals("1")) {
session.setAttribute("notLogin", true);
out.print("<script language=javascript>window.location.href='/TeleReport/jsp/login.jsp';</script>");
}
%>
</head>
<body>
<div style="position:absolute;margin:15px,0px,0px,0px;width:1085px;">
<html:form action="/jsp/updateOrder" onsubmit = "return orderUpdateCheck()">
<table >
<tr>
<td class="item">地市:</td>
<td class="item_value">
<html:select property="cityId" >
<html:optionsCollection property="cityList" label="cityName" value="cityId"/>
</html:select>
</tr>
<tr>
<td class="item">产品:</td>
<td class="item_value">
<html:select property="prodId" >
<html:optionsCollection property="prodList" label="prodName" value="prodId"/>
</html:select>
</tr>
<tr>
<td class="item">通知单类型:</td>
<td class="item_value">
<html:select property="orderTypeId" >
<html:optionsCollection property="orderTypeList" label="orderTypeName" value="orderTypeId"/>
</html:select>
</tr>
<tr>
<td class="item">金额:</td>
<td class="item_value">
<html:text property="amount" maxlength="10"></html:text>
</td>
</tr>
<tr>
<td></td>
<td>
<input type="submit" value="确认" class="button" />
<input type="reset" value="取消" class = "button" />
</td>
</tr>
</table>
</html:form>
</div>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -