accountview.jsp

来自「EJB+Struts+Webservice实现的开放式基金管理系统」· JSP 代码 · 共 50 行

JSP
50
字号
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<html:form action="updateStatus" styleId="financialAccountForm">
	<table border="0" width="100%">
		<tr>
			<td class="thd" colspan="2" align="center"><bean:message key="financialAccount.info"/></td>
		</tr>
		<tr>
			<td class="tdata" colspan="2" align="center">&nbsp;</td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="financialAccountDto.accountNo"/></td>
			<td class="tdata" width="50%"><bean:write name="financialAccountForm" property="financialAccountDto.accountNo"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="financialAccountDto.financingAmount"/></td>
			<td class="tdata" width="50%"><bean:write name="financialAccountForm" property="financialAccountDto.financingAmount"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="financialAccountDto.createdDate"/></td>
			<td class="tdata" width="50%"><bean:write name="financialAccountForm" property="financialAccountDto.createdDate"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientDto.clientNo"/></td>
			<td class="tdata" width="50%"><bean:write name="financialAccountForm" property="clientDto.clientNo"/></td>
		</tr>
		<tr>
			<td class="tdata" width="50%"><bean:message key="clientDto.clientName"/></td>
			<td class="tdata" width="50%"><bean:write name="financialAccountForm" property="clientDto.clientName"/></td>
		</tr>
		<tr>
			<td colspan="2" align="center">
				<html:submit styleClass="btnaction">
                                  <logic:equal value="正常" name="financialAccountForm" property="financialAccountDto.status">
                                    冻结账户
                                  </logic:equal>
                                  <logic:equal value="冻结" name="financialAccountForm" property="financialAccountDto.status">
                                   账户解冻
                                  </logic:equal>
				</html:submit>
				<input class="btnaction" type="button" value="新的查询" onclick="document.location='accountSearchForward.do'">
			</td>
		</tr>
	</table>
       <input type="hidden" name="currentStatus" value='<bean:write name="financialAccountForm" property="financialAccountDto.status"/>'>
       <input type="hidden" name="accountNo" value='<bean:write name="financialAccountForm" property="financialAccountDto.accountNo"/>'>
</html:form>
<html:errors/>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?