| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "bpm-workspace");%>
- <%pageContext.setAttribute("currentMenu", "bpm-process");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>表单列表</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- var config = {
- id: 'dynamicModelGrid',
- pageNo: ${page.pageNo},
- pageSize: ${page.pageSize},
- totalCount: ${page.totalCount},
- resultSize: ${page.resultSize},
- pageCount: ${page.pageCount},
- orderBy: '${page.orderBy == null ? "" : page.orderBy}',
- asc: ${page.asc},
- params: {
- },
- selectedItemClass: 'selectedItem',
- gridFormId: 'dynamicModelGridForm',
- exportUrl: 'form-template-export.do'
- };
- var table;
- $(function() {
- table = new Table(config);
- table.configPagination('.m-pagination');
- table.configPageInfo('.m-page-info');
- table.configPageSize('.m-page-size');
- });
- </script>
- </head>
- <body>
- <%@include file="/header/bpm-workspace3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/bpm-workspace3.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
-
- <div class="alert alert-info" role="alert">
- <button type="button" class="close" data-dismiss="alert" style="margin-right:30px;">×</button>
- <strong>草稿已保存</strong>
- </div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|