allianceAuditSolutionPage.html 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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:"technicalDemandManage",jsParam:jsParam,cssParam:cssParam}) {%>
  23. <div class="col-xs-12">
  24. <div class="row">
  25. <div class="table-responsive">
  26. <table id="sample-table-1"
  27. class="table table-striped table-bordered table-hover">
  28. <thead>
  29. <tr>
  30. <th>序号</th>
  31. <th>技术需求ID</th>
  32. <th>解决方案名称</th>
  33. <th>解决方案说明</th>
  34. <th>提交时间</th>
  35. <th>状态</th>
  36. <th></th>
  37. </tr>
  38. </thead>
  39. <tbody>
  40. <%for(tempDate in solutionInfo!){%>
  41. <tr>
  42. <td>${tempDateLP.index}</td>
  43. <td>${tempDate.demandId!''}</td>
  44. <td>${tempDate.name!''}</td>
  45. <td>${tempDate.explains!''}</td>
  46. <td>${tempDate.createDate!''}</td>
  47. <td>${tempDate.state!''}</td>
  48. <td>
  49. <div class="visible-md visible-lg hidden-sm hidden-xs btn-group">
  50. <a class="btn btn-xs btn-info" href="${contextPath}/technicalDemandAudit/auditSolution?id=${tempDate.id}" target="_blank" data-toggle="tooltip" data-placement="auto" title="查看方案详情">
  51. <i class="icon-flag bigger-120"></i>
  52. </a>
  53. <a class="btn btn-xs btn-info" href="javascript:todel('${contextPath}/technicalDemandAudit/auditSolution?id=${product.id}&type=1&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核通过。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="通过">
  54. <i class="icon-check bigger-120"></i>
  55. </a>
  56. <a class="btn btn-xs btn-danger" href="javascript:todel('${contextPath}/technicalDemandAudit/auditSolution?id=${product.id}&type=2&pageNumber=${pageNumber!1}&urlParas=${urlParas!}','审核拒绝。您确定吗?')" onclick="" data-toggle="tooltip" data-placement="auto" title="拒绝">
  57. <i class="icon-ban-circle bigger-120"></i>
  58. </a>
  59. </div>
  60. </td>
  61. </tr>
  62. <%}elsefor{%>
  63. <tr>
  64. <td colspan="9">没有记录!</td>
  65. </tr>
  66. <%}%>
  67. </tbody>
  68. </table>
  69. </div>
  70. </div>
  71. </div>