managerWhether.jsp 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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="managerWhether.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">项目名称:${materialShow.projectName}</td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. </form:form>
  38. <div class="row">
  39. <div class="col-sm-3"></div>
  40. <div class="col-sm-6">
  41. <div class="form-group text-center">
  42. <input id="agree" class="btn btn-primary btn-lg btn-parsley" type="submit" value="包含涉电工作" />&nbsp;
  43. <input id="no" class="btn btn-primary btn-lg btn-danger" type="submit" value="不包含涉电工作" />&nbsp;
  44. </div>
  45. </div>
  46. </div>
  47. <c:if test="${not empty materialModule.id}">
  48. <act:flowChart procInsId="${materialModule.act.procInsId}"/>
  49. <act:histoicFlow procInsId="${materialModule.act.procInsId}" />
  50. </c:if>
  51. </div>
  52. <!-- context menu -->
  53. <ul id="context-menu" class="dropdown-menu">
  54. </ul>
  55. </div>
  56. </div>
  57. </div>
  58. </body>
  59. </html>