?? arch.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">
客戶服務管理 > 服務歸檔
</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 + -