📄 addbody.jsp
字号:
<%@page contentType="text/html; charset=GBK" pageEncoding="GBK"%>
<%@page isELIgnored="false" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@taglib prefix="bean" uri="http://struts.apache.org/tags-bean"%>
<%@taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<!-- 定义标题 -->
<c:set var="pageTitle" scope="application">
<bean:message key="customer.title.add"/>
</c:set>
<div id="customer">
<!-- 错误信息 -->
<div style="float:left;width:1340x;color:red;padding-top:10%">
<html:errors/>
</div>
<html:form action="/protect/customer/addupdate.do?method=add" method="POST">
<table style="width:40%;border-bottom:dashed 1px #336699;font-size:14px" align="center" cellspacing="0">
<tr>
<th class="tr_bg_left"> </th>
<th class="tr_bg_middle" colspan="2"><bean:message key="customer.title.add"/></th>
<th class="tr_bg_right"> </th>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.name"/></td>
<td><input name="name" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.shortName"/></td>
<td><input name="short_name" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.chief"/></td>
<td><input name="chief" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.address"/></td>
<td><input name="address" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.postCode"/></td>
<td><input name="post_code" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.area"/></td>
<td><input name="area" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.areaCode"/></td>
<td><input name="area_code" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.phone"/></td>
<td><input name="phone" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.bankName"/></td>
<td><input name="bank_name" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.bankCode"/></td>
<td><input name="bank_code" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td><bean:message key="customer.property.accountNum"/></td>
<td><input name="account_num" type="text"></td>
<td><span style="color:red;font-size:10px">*</span></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td><input type="submit" class="addbtn" value="">
<input type="reset" class="resetbtn" value="">
</td>
<td> </td>
</tr>
</table>
</html:form>
</div>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -