67,549
社区成员




<%@ include file="/WEB-INF/jsp/include.jsp" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<link rel="stylesheet" href="<%=basePath%>css/homefinancial.css" type="text/css">
<script src="<%=basePath%>include/homeFinancial.js" language="javascript"></script>
<html:form action="addConsumeAction.do?method=add" method="post" target="mainwindow">
<table>
<tr><td>Consumer: </td><td><html:text property="name"></html:text></td></tr>
<tr><td>amount: </td><td><html:text property="amount"></html:text></td></tr>
<tr><td>Description: </td><td><html:text property="description"></html:text></td></tr>
<tr><td>Date: </td><td><html:text property="date"></html:text></td></tr>
<tr><td><input type="button" value="add" onclick="addConsumeFormSubmit();"></input></td></tr>
</table>
</html:form>
<%@ include file="/WEB-INF/jsp/include.jsp" %>
<%@ taglib prefix="spring" uri="/spring" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title><fmt:message key="login.title"/></title>
</head>
<link rel="stylesheet" href="<%=basePath%>css/homefinancial.css" type="text/css">
<script src="<%=basePath%>include/homeFinancial.js" language="javascript"></script>
<script>
window.name="mainwindow";
</script>
<body>
<h1>Successful</h1>
<logic:notEmpty name="consumes">
<table border="0" cellspacing="0" cellpadding="0" class="mytable" id="tableForRecValue">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Amount</th>
<th>Description</th>
<th>Date</th>
</tr>
</thead>
<c:forEach items="${consumes}" var="consume" varStatus="status">
<tr>
<td><c:out value="${status.index + 1}"/></td>
<td><c:out value="${consume.name}"/></td>
<td><c:out value="${consume.number}"/></td>
<td><c:out value="${consume.description}"/></td>
<td><c:out value="${consume.date}"/></td>
</tr>
</c:forEach>
</table>
<table>
<c:if test="${pageNumber > 1}">
<tr>
<td><c:out value="${currentPage}"/>/<c:out value="${pageNumber}"/></td>
<c:if test="${currentPage > 1}">
<td><a href="homeFinancialAction.do?method=list&page=<c:out value="${prePage}"/>">pre</a></td>
</c:if>
<c:if test="${currentPage < pageNumber}">
<td><a href="homeFinancialAction.do?method=list&page=<c:out value="${nextPage}"/>">next</a></td>
</c:if>
</tr>
</c:if>
</table>
</logic:notEmpty>
<logic:empty name="consumes">
<table>
<tr><td><fmt:message key="homefinancial.no.consume"/></td></tr>
</table>
</logic:empty>
<IFRAME name="iframe" SCROLLING="yes" src="jsp/iframe.jsp" width="100%" height="100%" id="page2"></IFRAME>
</body>
</html>