1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <%@ page language="java" pageEncoding="UTF-8"%>
- <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
- <%
- String path = request.getContextPath();
- %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="pragma" content="no-cache" />
- <meta http-equiv="cache-control" content="no-cache" />
- <meta http-equiv="expires" content="0" />
- <meta http-equiv="keywords" content="keyword1,keyword2,keyword3" />
- <meta http-equiv="description" content="This is my page" />
- <link rel="stylesheet" type="text/css" href="<%=path %>/css/base.css" />
- <script language="JavaScript" src="<%=path %>/js/public.js" type="text/javascript"></script>
- <script language="javascript">
-
- </script>
- </head>
- <body leftmargin="2" topmargin="2" background='<%=path %>/images/allbg.gif'>
- <table width="98%" border="0" cellpadding="2" cellspacing="1" bgcolor="#D1DDAA" align="center" style="margin-top:8px">
- <tr bgcolor="#E7E7E7">
- <td height="14" colspan="8" background="<%=path %>/images/tbg.gif"> 月收入统计 </td>
- </tr>
- <tr align="center" bgcolor="#FAFAF1" height="22">
- <td width="120px">月份</td>
- <td width="120px">金额</td>
-
- </tr>
-
-
- <c:forEach items="${orderList}" var="order">
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
-
- <td bgcolor="#FFFFFF" align="center">
- ${order.orderDate}
- </td>
-
- <td bgcolor="#FFFFFF" align="center">
- ¥${order.sjfk} 元
- </td>
-
- </tr>
- </c:forEach>
-
-
- <tr align='center' bgcolor="#FFFFFF" onMouseMove="javascript:this.bgColor='red';" onMouseOut="javascript:this.bgColor='#FFFFFF';" height="22">
-
- <td bgcolor="#FFFFFF" align="right">
- 合计
- </td>
-
- <td bgcolor="#FFFFFF" align="center">
- ¥${total}元
- </td>
-
- </tr>
-
-
- </table>
- </body>
- </html>
|