📄 contr_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="contrRpt">
<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:text property="custName" /></td>
<th>年份</th>
<td>
<html:select property="year" >
<html:option value="">全部</html:option>
<html:option value="2007">2007</html:option>
<html:option value="2008">2008</html:option>
<html:option value="2009">2009</html:option>
<html:option value="2010">2010</html:option>
</html:select>
</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 + -