oaLinkmanAddDialog.jsp 1023 B

1234567891011121314151617181920212223242526272829303132333435
  1. <%--
  2. time:2015-07-14 09:13:58
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>联系人明细</title>
  9. <%@include file="/commons/include/get.jsp"%>
  10. <script type="text/javascript">
  11. </script>
  12. </head>
  13. <body>
  14. <div class="panel">
  15. <div class="panel-top">
  16. <div class="tbar-title">
  17. <span class="tbar-label">添加联系人</span>
  18. </div>
  19. </div>
  20. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  21. <c:forEach items="${arryData}" var="arryData">
  22. <tr>
  23. <th width="18%">姓名: <span class="required red">*</span></th>
  24. <td ><input type="text" required="required" id="name" name="name" style="width:240px !important" class="inputText"/></td>
  25. <th>邮箱地址: </th>
  26. <td ><input type="text" readonly="readonly" id="email" name="email" value="${arryData}" style="width:240px !important" class="inputText"/></td>
  27. </tr>
  28. </c:forEach>
  29. </table>
  30. </div>
  31. </div>
  32. </body>
  33. </html>