PowerStart.jsp 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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="PowerStart.js"%>
  11. <script type="text/javascript">
  12. $(document).ready(function() {
  13. });
  14. </script>
  15. </head>
  16. <body>
  17. <div class="wrapper wrapper-content">
  18. <div class="panel panel-primary">
  19. <div class="panel-heading">
  20. <h3 class="panel-title">涉电开工流程</h3>
  21. </div>
  22. <div class="panel-body">
  23. <!-- 表格 -->
  24. <table id="testPicTable" data-toolbar="#toolbar"></table>
  25. <div class="panel-body">
  26. <form:form id="inputForm" modelAttribute="materialModule" class="form-horizontal">
  27. <form:hidden path="id"/>
  28. <form:hidden path="act.taskId"/>
  29. <form:hidden path="act.taskName"/>
  30. <form:hidden path="act.taskDefKey"/>
  31. <form:hidden path="act.procInsId"/>
  32. <form:hidden path="act.procDefId"/>
  33. <input type="hidden" id="procInsId" name="procInsId" value="${materialModule.act.procInsId}"/>
  34. <table class="table table-bordered">
  35. <tbody>
  36. <tr>
  37. <td class="width-35 active" style="text-align: right">项目名称:${materialShow.projectName}</td>
  38. <td class="width-35">项目类型:${materialShow.projectType}</td>
  39. </tr>
  40. <tr>
  41. <td class="width-15 active"><label class="pull-right"><font color="red">*</font>文件上传:</label></td>
  42. <td class="width-35">
  43. <sys:fileUpload path="pic" fileNumLimit="50" fileSizeLimit="50" value="${testPic.pic}" type="file" uploadPath="/materialModule"></sys:fileUpload>
  44. </td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. </form:form>
  49. <div class="row">
  50. <div class="col-sm-3"></div>
  51. <div class="col-sm-6">
  52. <div class="form-group text-center">
  53. <input id="agree" class="btn btn-primary btn-lg btn-parsley" type="submit" value="提交" />&nbsp;
  54. </div>
  55. </div>
  56. </div>
  57. <c:if test="${not empty materialModule.id}">
  58. <act:flowChart procInsId="${materialModule.act.procInsId}"/>
  59. <act:histoicFlow procInsId="${materialModule.act.procInsId}" />
  60. </c:if>
  61. </div>
  62. <!-- context menu -->
  63. <ul id="context-menu" class="dropdown-menu">
  64. </ul>
  65. </div>
  66. </div>
  67. </div>
  68. </body>
  69. </html>