process-operation-saveDraft.jsp 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <%@page contentType="text/html;charset=UTF-8"%>
  2. <%@include file="/taglibs.jsp"%>
  3. <%pageContext.setAttribute("currentHeader", "bpm-workspace");%>
  4. <%pageContext.setAttribute("currentMenu", "bpm-process");%>
  5. <!doctype html>
  6. <html lang="en">
  7. <head>
  8. <%@include file="/common/meta.jsp"%>
  9. <title>表单列表</title>
  10. <%@include file="/common/s3.jsp"%>
  11. <script type="text/javascript">
  12. var config = {
  13. id: 'dynamicModelGrid',
  14. pageNo: ${page.pageNo},
  15. pageSize: ${page.pageSize},
  16. totalCount: ${page.totalCount},
  17. resultSize: ${page.resultSize},
  18. pageCount: ${page.pageCount},
  19. orderBy: '${page.orderBy == null ? "" : page.orderBy}',
  20. asc: ${page.asc},
  21. params: {
  22. },
  23. selectedItemClass: 'selectedItem',
  24. gridFormId: 'dynamicModelGridForm',
  25. exportUrl: 'form-template-export.do'
  26. };
  27. var table;
  28. $(function() {
  29. table = new Table(config);
  30. table.configPagination('.m-pagination');
  31. table.configPageInfo('.m-page-info');
  32. table.configPageSize('.m-page-size');
  33. });
  34. </script>
  35. </head>
  36. <body>
  37. <%@include file="/header/bpm-workspace3.jsp"%>
  38. <div class="row-fluid">
  39. <%@include file="/menu/bpm-workspace3.jsp"%>
  40. <!-- start of main -->
  41. <section id="m-main" class="col-md-10" style=" ">
  42. <div class="alert alert-info" role="alert">
  43. <button type="button" class="close" data-dismiss="alert" style="margin-right:30px;">×</button>
  44. <strong>草稿已保存</strong>
  45. </div>
  46. </section>
  47. <!-- end of main -->
  48. </div>
  49. </body>
  50. </html>