demandSolutionListPage.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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:"Manage",jsParam:jsParam,cssParam:cssParam}) {%>
  23. <div class="col-xs-12">
  24. <div class="row">
  25. <form id="searchForm" action="${contextPath}/TechnicalDemandSolution/getTechnicalDemandList" method="post" class="form-horizontal">
  26. <input type="hidden" name="pageNumber" value="1" />
  27. 查询名称:<input type="text" name="name" 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. <div class="table-responsive">
  35. <table id="sample-table-1"
  36. class="table table-striped table-bordered table-hover">
  37. <thead>
  38. <tr>
  39. <th>序号</th>
  40. <th>需求名称</th>
  41. <th>解决方案截止日期</th>
  42. <th>创建时间</th>
  43. <th>企业名称</th>
  44. <th>联盟名称</th>
  45. <th>解决方案总量</th>
  46. <th>操作</th>
  47. </tr>
  48. </thead>
  49. <tbody>
  50. <%for(tempDate in dateList!){%>
  51. <tr>
  52. <td>${tempDateLP.index}</td>
  53. <td>${tempDate.name!''}</td>
  54. <td>${tempDate.endDate!''}</td>
  55. <td>${tempDate.createDate!''}</td>
  56. <td>${tempDate.enterpriseName!''}</td>
  57. <td>${tempDate.allianceName!''}</td>
  58. <td>${tempDate.solutionAmount!''}</td>
  59. <td>
  60. <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
  61. <a class="btn btn-xs btn-info" href="${contextPath}/TechnicalDemandAudit/toviewAndSolutionList?id=${tempDate.id}" data-toggle="tooltip" data-placement="auto" title="查看详情">
  62. <i class="icon-flag bigger-120"></i>
  63. </a>
  64. <a class="btn btn-xs btn-info" href="${contextPath}/TechnicalDemandSolution/toSolution?id=${tempDate.id}&pageNumber=${pageNumber!1}&urlParas=${urlParas!}" data-toggle="tooltip" data-placement="auto" title="添加解决方案">
  65. <i class="icon-edit bigger-120"></i>
  66. </a>
  67. </div>
  68. </td>
  69. </tr>
  70. <%}elsefor{%>
  71. <tr>
  72. <td colspan="13">没有记录!</td>
  73. </tr>
  74. <%}%>
  75. </tbody>
  76. </table>
  77. </div>
  78. <div class="pull-right">
  79. <%include("/ace/commonPage/_paginate.html", {"currentPage": pageNumber!1, "totalPage": totalPage!1, "totalRow": totalRow!0, "actionUrl": contextPath+"/technicalDemandSolution/getTechnicalDemandList?pageNumber=", "urlParas": urlParas!''}){}%>
  80. </div>
  81. <!-- /.table-responsive -->
  82. </div>
  83. <!-- /span -->
  84. </div>
  85. <!-- /row -->
  86. <%}%>