reviewNonPower.jsp 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>审核土建流程</title>
  6. <meta http-equiv="Content-type" content="text/html; charset=utf-8">
  7. <meta name="decorator" content="ani"/>
  8. <%@ include file="/webpage/include/bootstraptable.jsp"%>
  9. <%@include file="/webpage/include/treeview.jsp" %>
  10. <%@include file="reviewNonPower.js"%>
  11. </head>
  12. <body>
  13. <div class="wrapper wrapper-content">
  14. <div class="panel panel-primary">
  15. <div class="panel-heading">
  16. <h3 class="panel-title">审核土建流程</h3>
  17. </div>
  18. <div class="panel-body">
  19. <!-- 表格 -->
  20. <table id="testPicTable" data-toolbar="#toolbar"></table>
  21. <div class="panel-body">
  22. <form:form id="inputForm" modelAttribute="materialModule" class="form-horizontal">
  23. <form:hidden path="id"/>
  24. <form:hidden path="act.taskId"/>
  25. <form:hidden path="act.taskName"/>
  26. <form:hidden path="act.taskDefKey"/>
  27. <form:hidden path="act.procInsId"/>
  28. <form:hidden path="act.procDefId"/>
  29. <input type="hidden" id="procInsId" name="procInsId" value="${materialModule.act.procInsId}"/>
  30. <table class="table table-bordered">
  31. <tbody>
  32. <tr>
  33. <td class="width-35 active" style="text-align: right">项目名称:</td>
  34. <td class="width-35">${materialShow.projectName}</td>
  35. </tr>
  36. </tbody>
  37. </table>
  38. </form:form>
  39. <div class="row">
  40. <div class="col-sm-3"></div>
  41. <div class="col-sm-6">
  42. <div class="form-group text-center">
  43. <input id="agree" class="btn btn-primary btn-lg btn-parsley" type="submit" value="完成土建工作" />&nbsp;
  44. <input id="no" class="btn btn-primary btn-lg btn-danger" type="submit" value="未完成土建工作" />&nbsp;
  45. </div>
  46. </div>
  47. </div>
  48. <c:if test="${not empty materialModule.id}">
  49. <act:flowChart procInsId="${materialModule.act.procInsId}"/>
  50. <act:histoicFlow procInsId="${materialModule.act.procInsId}" />
  51. </c:if>
  52. </div>
  53. <!-- context menu -->
  54. <ul id="context-menu" class="dropdown-menu">
  55. </ul>
  56. </div>
  57. </div>
  58. </div>
  59. </body>
  60. </html>