📄 outinput.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/>
<link rel="stylesheet" type="text/css" href="../common/css/common.css" />
<title>录入出账信息</title>
<script type = "text/javascript" src = "../common/js/out.js"></script>
<%
response.setHeader("Pragma","no-cache");
response.setHeader("Cache-Control","no-cache");
response.setDateHeader("Expires",0);
%>
<%
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/insertOut" onsubmit = "return outInputCheck()">
<table >
<tr>
<td class = "item">出账日期:</td>
<td class = "item_value">
<INPUT readonly = "readonly" id=Begin_Time1 onclick="fPopCalendar(Begin_Time1,Begin_Time1,'Down');return false" type = "text" name="out_date"/>
</td>
</tr>
<tr>
<td class="item">
产品:
</td>
<td class="item_value">
<html:select property="prodId" >
<html:optionsCollection property="productList" label="prodName" value="prodId"/>
</html:select>
</td>
</tr>
<tr>
<td class="item">
出账类型:
</td>
<td class="item_value">
<html:select property="outTypeId" >
<html:optionsCollection property="outTypeList" label="outTypeName" value="outTypeId"/>
</html:select>
</td>
</tr>
<tr>
<td class = "item">
金额:
</td>
<td class = "itemvalue">
<html:text property="fee" size = "20" />
</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 + -