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

📄 cardinputerquery.jsp

📁 本套系统采用了业界当前最为流行的beanAction组件
💻 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/order.js"></script>
	<script type="text/javascript" src="../common/js/cardSale.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>
	<html:form action="/jsp/showCardInputer" onsubmit="return dateTest()">

		<table width="406" border="1" height="144">
			<tbody>
				<tr>
					<td class="item">
						&nbsp; 销售日期:
					</td>
					<td class="item_value">
						&nbsp;
						<INPUT id=Begin_Time1
							onclick="fPopCalendar(Begin_Time1,Begin_Time1,'Down');return false"
							type="text" name="saleDate" readonly/>
					</td>
				</tr>
				<tr>
					<td class="item">
						&nbsp; 城市:
					</td>
					<td class="item_value">
						&nbsp;
						<html:select value="-1" property="cityId">
							<html:option value="-1">不区分</html:option>
							<html:optionsCollection property="cityList" label="cityName"
								value="cityId" />
						</html:select>
					</td>
				</tr>
				<tr>
					<td class="item">
						&nbsp; 产品编码:
					</td>
					<td class="item_value">
						&nbsp;
						<html:select value="-1" property="proId">
							<html:option value="-1">不区分</html:option>
							<html:optionsCollection property="prodList" label="prodName"
								value="prodId" />
						</html:select>
					</td>
				</tr>
				<tr>
					<td class="item">
						&nbsp; 是否稽核:
					</td>
					<td class="item_value">
						&nbsp;
						<html:select value="-1" property="state">
							<html:option value="-1">不区分</html:option>
							<html:option value="2">未稽核</html:option>
							<html:option value="1">已稽核</html:option>
							<html:option value="0">未通过</html:option>
						</html:select>
					</td>
				</tr>

				<tr>
					<td>
						&nbsp;
					</td>
					<td class="item_value">
						&nbsp;
						<html:submit value="查询"></html:submit>
						<html:reset value="取消"></html:reset>
					</td>
				</tr>
			</tbody>
		</table>
		<br>
		<br>
	</html:form>

</body>
</html:html>

⌨️ 快捷键说明

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