clientdetailview.jsp
来自「EJB+Struts+Webservice实现的开放式基金管理系统」· JSP 代码 · 共 94 行
JSP
94 行
<%@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"%>
<table border="0" width="100%">
<tr>
<td class="thd" colspan="2" align="center"><bean:message key="client.detail.veiw"/></td>
</tr>
</table>
<table border="0" width="100%">
<tr>
<td class="tdata" colspan="2"><b><bean:message key="client.info"/></b></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.clientName"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.clientName"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.sex"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.sex"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.idCardNo"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.idCardNo"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.phone"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.phone"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.address"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.address"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.email"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.email"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientDto.hobby"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="clientDto.hobby"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientForm.usableFinancing"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="financialAccountDto.financingAmount"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="clientForm.asset"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="asset"/></td>
</tr>
</table>
<table border="0" width="100%">
<tr>
<td class="tdata" colspan="2"><b><bean:message key="client.financingAccount.info"/></b></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="financialAccountDto.accountNo"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" 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="clientForm" 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="clientForm" property="financialAccountDto.createdDate"/></td>
</tr>
<tr>
<td class="tdata" width="50%"><bean:message key="financialAccountDto.status"/></td>
<td class="tdata" width="50%"><bean:write name="clientForm" property="financialAccountDto.status"/></td>
</tr>
</table>
<table border="0" width="100%">
<tr>
<td class="tdata" colspan="7"><b>客户基金账户列表</b></td>
</tr>
<tr>
<td class="tdata" ><b><bean:message key="client.detail.fundAcccNo"/></b></td>
<td class="tdata" ><b><bean:message key="client.detail.fundName"/></b></td>
<td class="tdata" ><b><bean:message key="client.detail.fundQuantity"/></b></td>
<td class="tdata" ><b><bean:message key="client.detail.buyPrice"/></b></td>
<td class="tdata" ><b><bean:message key="client.detail.currentPrice"/></b></td>
<td class="tdata" ><b><bean:message key="client.detail.accountStatus"/></b></td>
</tr>
<logic:iterate id="fundAccountDto" name="clientForm" property="fundList">
<tr>
<td class="tdata" ><bean:write name="fundAccountDto" property="fundAccNo"/></td>
<td class="tdata" ><bean:write name="fundAccountDto" property="fundName"/></td>
<td class="tdata" ><bean:write name="fundAccountDto" property="quantity"/></td>
<td class="tdata" ><bean:write name="fundAccountDto" property="price"/></td>
<td class="tdata" ><bean:write name="fundAccountDto" property="fundDto.currentPrice"/></td>
<td class="tdata" ><bean:write name="fundAccountDto" property="fundDto.status"/></td>
</tr>
</logic:iterate>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?