?? cons_rpt_list.jsp
字號:
<%@ page language="java" pageEncoding="GBK" %>
<%@ 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" %>
<%@ taglib uri="/WEB-INF/jb-common.tld" prefix="jb" %>
<script src="validate.js" ></script>
<script src="icommon.js" ></script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<title>客戶構成分析</title>
<link rel="stylesheet" type="text/css" href="styles.css" >
</head>
<body>
<html:form action="consRpt">
<html:hidden property="o" value="toList" />
<div class="page_title">客戶構成分析</div>
<div class="button_bar">
<button class="common_button" onclick="help('');">幫助</button>
<button class="common_button" onclick="javascript:doSubmit('toList');">查詢</button>
</div>
<table class="query_form_table" border="0" cellPadding="3" cellSpacing="0">
<tr>
<th>報表方式</th>
<td><html:select property="type" >
<html:option value="等級">按等級</html:option>
<html:option value="信用度">按信用度</html:option>
<html:option value="滿意度">按滿意度</html:option>
</html:select></td>
<th> </th>
<td> </td>
</tr>
</table>
<!-- 列表數據 -->
<br />
<%int i=0; %>
<table class="data_list_table" border="0" cellPadding="3" cellSpacing="0">
<tr>
<th>序號</th>
<th>條目</th>
<th>客戶數量</th>
</tr>
<logic:iterate id="item" name="list">
<tr>
<td class="list_data_number"><%=++i %> </td>
<td class="list_data_ltext">${item[0] } </td>
<td class="list_data_number">${item[1] } </td>
</tr>
</logic:iterate>
<logic:empty name="list">
<tr><td class="data_cell" colspan="20" style="text-align:center;height:40px;">沒有記錄</td></tr>
</logic:empty>
</table>
</html:form>
</body>
</html:html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -