reviewList.html 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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("/IR/afterPage/commonPage/_layout.html", {nav: "工作探索审核",meunsel:"Manage",jsParam:jsParam,cssParam:cssParam}) {%>
  23. <div class="col-xs-12">
  24. <div class="row">
  25. <input type="hidden" name="pageNumber" value="1" />
  26. </div>
  27. </div>
  28. <div class="col-xs-12">
  29. <div class="row">
  30. <div class="table-responsive">
  31. <table id="sample-table-1"
  32. class="table table-striped table-bordered table-hover">
  33. <thead>
  34. <tr>
  35. <th>序号</th>
  36. <th>用户编号</th>
  37. <th>标题名称</th>
  38. <th>行业类型</th>
  39. <th>创建时间</th>
  40. <th>状态</th>
  41. <th>操作</th>
  42. </tr>
  43. </thead>
  44. <tbody>
  45. <%for(dateList in workExplorationAuditList!){%>
  46. <tr>
  47. <td>${dateListLP.index}</td>
  48. <td>${dateList.userId!''}</td>
  49. <td>${dateList.name!''}</td>
  50. <td>${dateList.industryType!''}</td>
  51. <td>${dateList.createDate!''}</td>
  52. <td>
  53. <%if(dateList.state == 0){%>
  54. <font color="blue">待审核</font>
  55. <%}else if(dateList.state == 1){%>
  56. <font color="green">通过审核</font>
  57. <%}else if(dateList.state == 2){%>
  58. <font color="red">审核拒绝</font>
  59. <%}%>
  60. </td>
  61. <td>
  62. <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
  63. <a class="btn btn-xs btn-info" href="${contextPath}/workExplorationAudit/review?id=${dateList.id}" data-toggle="tooltip" data-placement="auto" title="查看详情">
  64. <i class="icon-flag bigger-120"></i>
  65. </a>
  66. <a class="btn btn-xs btn-info" href="javascript:todel('${contextPath}/workExplorationAudit/audit?id=${dateList.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核通过。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="通过">
  67. <i class="icon-check bigger-120"></i>
  68. </a>
  69. <a class="btn btn-xs btn-danger" href="javascript:todel('${contextPath}/workExplorationAudit/audit?id=${dateList.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核拒绝。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="拒绝">
  70. <i class="icon-ban-circle bigger-120"></i>
  71. </a>
  72. </div>
  73. </td>
  74. </tr>
  75. <%}elsefor{%>
  76. <tr>
  77. <td colspan="7">没有记录!</td>
  78. </tr>
  79. <%}%>
  80. </tbody>
  81. </table>
  82. </div>
  83. <div class="pull-right">
  84. <%include("/IR/afterPage/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/workExplorationAudit/getWorkExplorationAuditList?pageNumber=", "urlParas": urlParas!''}){}%>
  85. </div>
  86. <!-- /.table-responsive -->
  87. </div>
  88. <!-- /span -->
  89. </div>
  90. <!-- /row -->
  91. <%}%>