123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <%var cssPar = {%>
- <link href="${contextPath}/WebPages_170421/css/personal/list.css" rel="stylesheet" type="text/css">
- <%};%>
- <%var jsPar = {%>
- <script type="text/javascript" src="${contextPath}/WebPages_170421/js/personal/list.js"></script>
- <%};%>
- <%layout("/WebPages_170421/personalPages/commonPage/_layout.html", {nav:"",meunsel:"",jsParam:jsPar,cssParam:cssPar}) {%>
- <div class="container">
- <div class="conent">
- <span class="nin">您当前的位置:</span>
- <a href="/" class="yiji">首页</a>
- <span class="nin"> > </span>
- <a href="/toindex" class="yiji">个人中心</a>
- <span class="nin"> > </span>
- <a href="${contextPath}/experts/getExpertsList?pageNumber=1" class="yiji">专家信息管理</a>
- </div>
- </div>
- <div class="container" >
- <% include("/WebPages_170421/personalPages/commonPage/_navigation.html"){} %>
- <div class="Dlrt">
- <form action="/experts/getExpertsList" method="post" class="frmSs">
- <input type="hidden" name="pageNumber" value="1" />
- <span class="p1">查询姓名:</span>
- <input type="text" class="p2" name="name" placeholder="请输入姓名">
- <span class="p1">查询从事专业:</span>
- <input type="text" class="p2" name="ZJZY" placeholder="请输入从事专业">
- <span class="p1">查询证件号码:</span>
- <input type="text" class="p2" name="card" placeholder="请输入证件号码">
- <input type="submit" class="p3" value="查询">
- <a href="${contextPath}/experts/toedit?pageNumber=${pageNumber!1}">
- <input type="button" class="p4" value="添加专家信息">
- </a>
- </form>
- <div class="table-fa">
- <table border="1" style="border-bottom:1px solid #cccccc; border-left:1px solid #f6f7f8; border-top:1px solid #f6f7f8; border-right:1px solid #cccccc;" width="915px" >
- <thead>
- <tr style="width: 910px; height: 40px; text-align: center; background: #e5f1f9">
- <th>序号</th>
- <th>姓名</th>
- <th>性别</th>
- <th>出生日期</th>
- <th>民族</th>
- <th>职称</th>
- <th>具体职称</th>
- <th>职务</th>
- <th>从事专业</th>
- <th>可供咨询领域</th>
- <th>操 作</th>
- </tr>
- </thead>
- <tbody id="t1">
- <%for(tempDate in dateList!){%>
- <tr style=" height: 40px;">
- <td>${tempDateLP.index}</td>
- <td>${tempDate.name!''}</td>
- <td>${tempDate.sex!''}</td>
- <td>${tempDate.birthdate!''}</td>
- <td>${tempDate.national!''}</td>
- <td>${tempDate.technical!''}</td>
- <td>${tempDate.technicalActual!''}</td>
- <td>${tempDate.position!''}</td>
- <td>${tempDate.ZJZY!''}</td>
- <td>${tempDate.field!''}</td>
- <td style="width:110px;">
- <%if(session.LoginUser.isplatform==1){%>
- <a href="${contextPath}/experts/view?id=${tempDate.id}">
- <div class="btn1" style="margin-left:12px;" title="详情">
- <i class="icon-folder-open-alt"></i>
- </div>
- </a>
- <a href="${contextPath}/experts/toedit?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
- <div class="btn1" title="编辑">
- <i class="icon-edit"></i>
- </div>
- </a>
- <a href="javascript:" onclick="del()">
- <div class="btn1 bgli" title="删除">
- <i class="icon-trash" ></i>
- </div>
- </a>
- <%}%>
- </td>
- </tr>
- <div id="box">
- <p style="width: 200px; height:80px; line-height:80px; text-align: center;">确认删除吗?</p>
- <a href="${contextPath}/experts/del?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}">
- <input type="button" onclick="yes()" value="确定" class="delBtn">
- </a>
- <input type="button" onclick="no()" value="取消" class="delBtn m0" >
- </div>
- <%}elsefor{%>
- <tr>
- <td colspan="12">没有记录!</td>
- </tr>
- <%}%>
- </tbody>
- </table>
- <%include("/WebPages_170421/personalPages/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/experts/getExpertsList?pageNumber=", "urlParas": urlParas!''}){}%>
- </div>
- </div>
- </div>
- <%}%>
|