| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <%@page contentType="text/html;charset=UTF-8"%>
- <%@include file="/taglibs.jsp"%>
- <%pageContext.setAttribute("currentHeader", "pim");%>
- <%pageContext.setAttribute("currentMenu", "note");%>
- <%pageContext.setAttribute("currentTitle", "bpm-process-8");%>
- <!doctype html>
- <html lang="en">
- <head>
- <%@include file="/common/meta.jsp"%>
- <title>编辑</title>
- <%@include file="/common/s3.jsp"%>
- <script type="text/javascript">
- $(function() {
- $("#pimRemindForm").validate({
- submitHandler: function(form) {
- bootbox.animate(false);
- var box = bootbox.dialog('<div class="progress progress-striped active" style="margin:0px;"><div class="bar" style="width: 100%;"></div></div>');
- form.submit();
- },
- errorClass: 'validate-error'
- });
- })
- </script>
- </head>
- <body>
- <%request.setAttribute("pageNow", "pim");%>
- <%@include file="/header/pim3.jsp"%>
- <div class="row-fluid">
- <%@include file="/menu/pim3.jsp"%>
- <!-- start of main -->
- <section id="m-main" class="col-md-10" style=" ">
- <div class="panel panel-default">
- <div class="panel-heading">
- 编辑
- </div>
- <div class="panel-body">
- <form id="pimRemindForm" method="post" action="pim-note-save.do" class="form-horizontal">
- <c:if test="${not empty model}">
- <input id="pimRemind_id" type="hidden" name="id" value="${model.id}">
- </c:if>
- <div class="form-group">
- <label class="control-label col-md-1" for="pimNote_content">便签</label>
- <div class="col-sm-5">
- <textarea id="pimNote_content" name="content" class="form-control required" minlength="2" maxlength="200" rows="10">${model.content}</textarea>
- </div>
- </div>
- <div class="form-group">
- <div class="col-md-offset-1 col-md-11">
- <button type="submit" class="btn btn-primary a-submit"><spring:message code='core.input.save' text='保存'/></button>
-
- <button type="button" class="btn btn-link a-cancel" onclick="history.back();"><spring:message code='core.input.back' text='返回'/></button>
- </div>
- </div>
- </form>
- </div>
- </div>
- </section>
- <!-- end of main -->
- </div>
- </body>
- </html>
|