personalFilesList.html 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. <%var cssParam = {%>
  2. <%};%>
  3. <%var jsParam = {%>
  4. <script type="text/javascript">
  5. function todel(url,msg){
  6. bootbox.dialog({
  7. title: "系统提示",
  8. message: msg,
  9. locale:"zh_CN",
  10. buttons: {
  11. cancel: {label: "取消",className: "btn-cancel",callback: function() {}},
  12. ok: {label: "确定",className: "btn-success",
  13. callback: function() {
  14. window.location.href = url;
  15. }
  16. }
  17. }
  18. });
  19. }
  20. </script>
  21. <%};%>
  22. <%layout("/ace/commonPage/_layout.html", {nav: "个人档案审核",meunsel:"personalFileAuditManage",jsParam:jsParam,cssParam:cssParam}) {%>
  23. <div class="col-xs-12">
  24. <div class="row">
  25. <form id="searchForm" action="${contextPath}/admin/personalFileAudit/auditPersonalFileList" method="post" class="form-horizontal">
  26. <input type="hidden" name="pageNumber" value="1" />
  27. 姓名检索:<input type="text" name="userName" placeholder="请输入姓名" value="" />
  28. <button class="btn btn-xs btn-primary" onclick="document.getElementById('searchForm').submit();"><i class="icon-search bigger-120">查询</i></button>
  29. </form>
  30. </div>
  31. </div>
  32. <div class="col-xs-12">
  33. <div class="row">
  34. <input type="hidden" name="pageNumber" value="1" />
  35. </div>
  36. </div>
  37. <div class="col-xs-12">
  38. <div class="row">
  39. <div class="table-responsive">
  40. <table id="sample-table-1"
  41. class="table table-striped table-bordered table-hover">
  42. <thead>
  43. <tr>
  44. <th>姓名</th>
  45. <th>性别</th>
  46. <th>民族</th>
  47. <th>出生日期</th>
  48. <th>从事专业</th>
  49. <th>职务</th>
  50. <th> 操 作 </th>
  51. </tr>
  52. </thead>
  53. <tbody>
  54. <%for(tempDate in personalist!){%>
  55. <tr>
  56. <td>${tempDate.userName!''}</td>
  57. <td>
  58. <%if(tempDate.sex==0){%>
  59. <%}else{%>
  60. <%}%>
  61. </td>
  62. <td>${tempDate.nation!''}</td>
  63. <td>${tempDate.birthday!''}</td>
  64. <td>${tempDate.ZJZY!''}</td>
  65. <td>${tempDate.position!''}</td>
  66. <td>
  67. <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
  68. <a class="btn btn-xs btn-info" href="${contextPath}/admin/personalFileAudit/personalFileView?id=${tempDate.id}" data-toggle="tooltip" data-placement="auto" title="查看详情">
  69. <i class="icon-flag bigger-120"></i>
  70. </a>
  71. <a class="btn btn-xs btn-info" href="javascript:todel('${contextPath}/admin/personalFileAudit/personalFileAudit?id=${tempDate.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核通过。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="通过">
  72. <i class="icon-check bigger-120"></i>
  73. </a>
  74. <a class="btn btn-xs btn-danger" href="javascript:todel('${contextPath}/admin/personalFileAudit/personalFileAudit?id=${tempDate.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核拒绝。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="拒绝">
  75. <i class="icon-ban-circle bigger-120"></i>
  76. </a>
  77. </div>
  78. </td>
  79. </tr>
  80. <%}elsefor{%>
  81. <tr>
  82. <td colspan="7">没有记录!</td>
  83. </tr>
  84. <%}%>
  85. </tbody>
  86. </table>
  87. </div>
  88. <div class="pull-right">
  89. <%include("/ace/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/admin/personalFileAudit/auditPersonalFileList?pageNumber=", "urlParas": urlParas!''}){}%>
  90. </div>
  91. <!-- /.table-responsive -->
  92. </div>
  93. <!-- /span -->
  94. </div>
  95. <!-- /row -->
  96. <%}%>