update
This commit is contained in:
61
ebpm-process-manage/webapp/pages/procDefModelMgr/index.jsp
Normal file
61
ebpm-process-manage/webapp/pages/procDefModelMgr/index.jsp
Normal file
@@ -0,0 +1,61 @@
|
||||
<%@ page contentType="text/html;charset=UTF-8"%>
|
||||
<%@ include file="/commons/taglibs.jsp"%>
|
||||
<%
|
||||
String path = request.getContextPath();
|
||||
String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
|
||||
+ path + "/";
|
||||
%>
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<%@ include file="/commons/meta.jsp"%>
|
||||
<base href="<%=basePath%>">
|
||||
<title>创建模型</title>
|
||||
<script>
|
||||
function submitForm() {
|
||||
return false;
|
||||
}
|
||||
|
||||
$(document).ready(function() {
|
||||
|
||||
});
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<form action="${ctx}/procDefModelMgr/createOpenFlow.do" method="post"
|
||||
id="modelForm">
|
||||
<input name="key" id="id" type="hidden" value="${id}"/>
|
||||
<input name="name" id="name" type="hidden" value="${name}"/>
|
||||
<input name="appId" id="appId" type="hidden" value="${appId}"/>
|
||||
<div class="main-container" id="main-container">
|
||||
<div class="panel panel-primary">
|
||||
|
||||
<div class="panel-body">
|
||||
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<br />
|
||||
<div><h1 align="center">${errorMsg}</h1></div>
|
||||
<div align="center">
|
||||
<img src="${ctx}/resource/css/images/flowdemo.png" />
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
<div align="center">绘制上图所示流程图,设定数据流转方式,即可搭建线上工作流 如有问题,请参考帮助中心</div>
|
||||
<br />
|
||||
<br />
|
||||
<div align="center">
|
||||
<button type="submit" class="btn btn-sm btn-primary"
|
||||
id="submitButton" onclick="submitForm()" ${not empty errorMsg?"disabled":""}>
|
||||
开始使用 <i class="ace-icon fa fa-save bigger-110"></i>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user