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

📄 arch.jsp

📁 关于ssh的整合,希望对大家有帮助
💻 JSP
字号:
<%@ page language="java" pageEncoding="utf-8"%>
<%
	String path = request.getContextPath();
	String basePath = request.getScheme() + "://"
			+ request.getServerName() + ":" + request.getServerPort()
			+ path + "/";
%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-bean"
	prefix="bean"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-html"
	prefix="html"%>
<%@ taglib uri="http://jakarta.apache.org/struts/tags-logic"
	prefix="logic"%>

<html:html locale="true">
<head>
	<html:base />

	<title>arch.jsp</title>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
	<link href="../../css/style.css" rel="stylesheet" type="text/css">

</head>

<body>
	<html:form action="/service" method="post">
		<div class="page_title">
			客户服务管理 &gt; 服务归档
		</div>
		<div class="button_bar">
			<button class="common_button" onclick="help('');">
				帮助
			</button>
			<input type="hidden" name="flag" value="find">
			<input type="submit" name="submit" class="common_button" value="查询">
		</div>
		<table border="0" class="query_form_table">
			<tr>
				<th height="28">
					客户
				</th>
				<td>
					<html:text property="service.svrCustName"></html:text>
				</td>
				<th height="28">
					概要
				</th>
				<td>
					<html:text property="service.svrTitle"></html:text>
				</td>
				<th height="28">
					服务类型
				</th>
				<td>
					<html:select property="service.svrType">
						<option>咨询</option>
						<option>建议</option>
						<option>投诉</option>
					</html:select>
				</td>
			</tr>
			<tr>
				<th height="32">
					创建日期
				</th>
				<td colspan="3">
					<input name="T2" size="10" />
					-
					<input name="T1" size="10" />
				</td>
				<th height="32">
					状态
				</th>
				<td>
				    <html:select property="service.svrStatus">
						<option>
							请选择..
						</option>
						<option>
							新创建
						</option>
						<option>
							已归档
						</option>
						<option>
							已处理
						</option>
						<option>
							已反馈
						</option>
						<option selected="selected">
							已归档
						</option>
					</html:select>
				</td>
			</tr>
		</table>
		<br />
		<table class="data_list_table">
			<tr>
				<th>
					编号
				</th>
				<th>
					客户
				</th>
				<th>
					概要
				</th>
				<th>
					服务类型
				</th>
				<th>
					创建人
				</th>
				<th>
					创建日期
				</th>
				<th>
					状态
				</th>
				<th>
					操作
				</th>
			</tr>
		   <logic:iterate id="services" name="list" scope="request">
				<tr>
					<td class="list_data_number"><bean:write name="services" property="svrId"/></td>
					<td class="list_data_text"><bean:write name="services" property="svrCustName"/></td>
					<td class="list_data_ltext"><bean:write name="services" property="svrTitle"/></td>
					<td class="list_data_text"><bean:write name="services" property="svrType"/></td>
					<td class="list_data_text"><bean:write name="services" property="svrCreateBy"/></td>
					<td class="list_data_text"><bean:write name="services" property="svrCreateDate"/></td>
					<td class="list_data_text"><bean:write name="services" property="svrStatus"/></td>
					<td class="list_data_op">
					<a href="<%=path %>/service.do?flag=dofindid&svrId=<bean:write name="services" property="svrId"/>"><img title="查看" src="../../images/bt_detail.gif" class="op_button" /></a>
				    </td>
				</tr>
		   </logic:iterate>
			<tr>
				<th colspan="8" class="pager">
					<div class="pager">
					   <bean:size id="count" name="list"/>
						共${count}条记录 每页
						<input value="10" size="2" />
						条 第
						<input value="1" size="2" />
						页/共5页
						<a href="#">第一页</a>
						<a href="#">上一页</a>
						<a href="#">下一页</a>
						<a href="#">最后一页</a> 转到
						<input value="1" size="2" />
						<button onclick="reload();">
							GO
						</button>
					</div>
				</th>
			</tr>
		</table>
	</html:form>
	<script type="text/javascript">
	    function help(msg){
	        alert('欢迎使用'+msg);
           }
	</script>
</body>
</html:html>

⌨️ 快捷键说明

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