1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <%--
- time:2015-07-14 09:13:58
- --%>
- <%@page language="java" pageEncoding="UTF-8"%>
- <%@include file="/commons/include/html_doctype.html"%>
- <html>
- <head>
- <title>联系人明细</title>
- <%@include file="/commons/include/get.jsp"%>
- <script type="text/javascript">
- //放置脚本
- </script>
- </head>
- <body>
- <div class="panel">
- <div class="panel-top">
- <div class="tbar-title">
- <span class="tbar-label">联系人详细信息</span>
- </div>
- <div class="panel-toolbar">
- <div class="toolBar">
- <div class="group">
- <a class="link back" href="list.ht"><span></span>返回</a>
- </div>
- </div>
- </div>
- </div>
- <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
- <tr>
- <th width="18%">姓名:</th>
- <td >${oaLinkman.name}</td>
- <th>性别: <span class="required red">*</span></th>
- <td >
- <select name="sex" class="select" style="width:265px !important">
- <option value="男" <c:if test="${oaLinkman.sex=='男'}">selected</c:if> >男</option>
- <option value="女" <c:if test="${oaLinkman.sex=='女'}">selected</c:if> >女</option>
- </select>
- </td>
- </tr>
-
- <tr>
- <th>办公电话: </th>
- <td ><input type="text" id="officephone" name="officephone" value="${oaLinkman.officephone}" validate="{officephone:true}" style="width:240px !important" class="inputText"/></td>
- <th>移动电话:</th>
- <td >
- <input type="text" id="phone" name="phone" value="${oaLinkman.phone}" validate="{phone:true}" style="width:240px !important" class="inputText"/>
- <c:if test="${oaLinkman.phone_1 == null}">
- <a class="link add" href="#" onclick="produceInputElement()"><span></span>增加</a>
- </c:if>
- <c:if test="${oaLinkman.phone_1 != null}">
- <tr>
- <th></th>
- <td >
- <input type="text" id="phone_1" name="phone_1" value="${oaLinkman.phone_1}" validate="{phone:true}" style="width:240px !important" class="inputText"/>
- </td>
- </tr>
- </c:if>
- <!-- 隐藏标签,用来保存新生成的input 文件上传控件的 id 值的后缀 初始值为1 -->
- <input type="hidden" id="hidden_input" value="1">
- <div id="container">
- <tbody id="file_input_1">
- </tbody>
- </div>
- </td>
- <th>邮箱地址: </th>
- <td ><input type="text" id="email" name="email" value="${oaLinkman.email}" validate="{email:true}" style="width:240px !important" class="inputText"/></td>
- <th>部门: </th>
- <td ><input type="text" id="company" name="company" value="${oaLinkman.company}" style="width:240px !important" class="inputText"/></td>
- </tr>
- <tr>
- <th>工作: </th>
- <td ><input type="text" id="job" name="job" value="${oaLinkman.job}" style="width:240px !important" class="inputText"/></td>
- <th>地址: </th>
- <td ><input type="text" id="address" name="address" value="${oaLinkman.address}" style="width:240px !important" class="inputText"/></td>
- </tr>
- <tr>
- <th>创建时间: </th>
- <td>
- <input type="text" id="createtime" style="width:240px !important" name="createtime" value="<fmt:formatDate value='${oaLinkman.createtime}' pattern='yyyy-MM-dd'/>" class="inputText date" validate="{date:true}" />
- </td>
- <th>当前状态: </th>
- <td>
- <select name="status" class="select" style="width:265px !important" >
- <option value="1" <c:if test="${oaLinkman.status==1}">selected</c:if> >启用</option>
- <option value="0" <c:if test="${oaLinkman.status==0}">selected</c:if> >禁用</option>
- </select>
- </td>
- </tr>
- </table>
- </div>
- </div>
- </body>
- </html>
|