⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accountview.jsp

📁 EJB+Struts+Webservice实现的开放式基金管理系统
💻 JSP
字号:
<%@ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -